body {
    background: linear-gradient(180deg, #0a1628 0%, #1a2332 100%);
    min-height: 100vh;
}

.subscription-card {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f1f3d 100%);
    border-radius: 24px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 520px;
    border: 2px solid transparent;
}

.subscription-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 149, 255, 0.3);
    border-color: rgba(0, 149, 255, 0.5);
}

.subscription-card.active {
    border-color: #0095ff;
    box-shadow: 0 20px 60px rgba(0, 149, 255, 0.5);
    transform: translateY(-8px) scale(1.02);
}

.card-header {
    background: linear-gradient(135deg, #0095ff 0%, #0066cc 100%);
    height: 100px;
    border-radius: 24px 24px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: ellipse(100% 100% at 50% 0%);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: -35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid #1e3a5f;
}

.price-section {
    padding-top: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.period {
    color: #8b9dc3;
    font-size: 1rem;
}

.feature-list {
    padding: 0 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: white;
    font-size: 0.95rem;
}

.feature-item svg {
    flex-shrink: 0;
    /* color: #0095ff; */
}

.shop-btn {
    background: linear-gradient(135deg, #0095ff 0%, #0066cc 100%);
    color: white;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 149, 255, 0.3);
    display: inline-block;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 149, 255, 0.5);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 10;
}

.plan-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.discount-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.coupon-section {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f1f3d 100%);
    border: 2px solid #2d4a6f;
    border-radius: 20px;
}

.submit-section {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f1f3d 100%);
    border: 2px dashed #2d4a6f;
    border-radius: 20px;
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.hero-description {
    color: #8b9dc3;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.dark .subscription-card {
    background: linear-gradient(180deg, #1e3a5f 0%, #0f1f3d 100%);
}

@media (max-width: 768px) {
    .price {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }
}