body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: black;
}

.text-white {
    color: white;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.space-y-12 > * + * {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: bold;
}

.text-gray-400 {
    color: #9ca3af;
}

.max-w-2xl {
    max-width: 42rem;
}

.grid {
    display: grid;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pricing-card {
    background-color: #18181b;
    border: 1px solid #27272a;
    border-radius: 0.5rem;
    padding: 1.5rem;
    position: relative;
}

.featured {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    background-color: white;
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.button {
    background-color: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    width: 100%;
    margin-top: 1rem;
}

.button:hover {
    background-color: #1d4ed8;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item::before {
    content: "✓";
    margin-right: 0.5rem;
    color: #9ca3af;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #18181b;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #27272a;
    width: 80%;
    max-width: 500px;
    border-radius: 0.5rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #27272a;
    margin-bottom: 1rem;
}

.selected-plan {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.plan-details {
    text-align: right;
}

#plan-price {
    font-size: 1.5rem;
    font-weight: bold;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border: 1px solid #27272a;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.payment-method.selected {
    border-color: #2563eb;
    background-color: rgba(37, 99, 235, 0.1);
}

.payment-method-details {
    display: flex;
    align-items: center;
}

.payment-method-logo {
    width: 60px;
    height: 40px;
    object-fit: contain;
    margin-left: 1rem;
}