/* Custom CSS variables for modern styling */
:root {
    --bg-main: #050014;
    --bg-panel: rgba(13, 7, 34, 0.7);
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    --accent-orange: #ff5f2e;
    --accent-orange-gradient: linear-gradient(135deg, #ff893b 0%, #ff5f2e 100%);
    --accent-pink: #ff2a85;
    --accent-pink-gradient: linear-gradient(135deg, #ff007f 0%, #d8005b 100%);
    --accent-cyan: #00f0ff;
    --accent-green: #00ff66;
    
    --text-white: #ffffff;
    --text-muted: #b0a8c0;
    --text-dark: #050014;
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 240, 255, 0.15);
    --shadow-main: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 50% 0%, #170d35 0%, #050014 60%),
        radial-gradient(circle at 0% 100%, #0f0525 0%, #050014 40%);
    background-attachment: fixed;
    color: var(--text-white);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Mobile-first centered funnel layout */
.page-wrapper {
    width: 100%;
    max-width: 480px;
    background: var(--bg-panel);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    min-height: 100vh;
    padding-bottom: 80px;
    position: relative;
    box-shadow: 0 0 100px rgba(23, 13, 53, 0.5);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 3px;
}

/* Common Layout Elements */
.section {
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section.alt-bg {
    background: rgba(255, 255, 255, 0.01);
}

.section-tag {
    display: block;
    color: var(--accent-orange);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-title.text-white {
    color: var(--text-white);
}

.section-description {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.highlight {
    background: linear-gradient(135deg, #ff9e7d 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sticky top notification banner */
.top-banner {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background-color: rgba(12, 5, 30, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 15px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
}

.banner-badge {
    background-color: var(--accent-pink);
    color: var(--text-white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}

.banner-text {
    flex-grow: 1;
    margin-left: 10px;
    color: var(--text-white);
}

.countdown-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 13px;
    color: var(--accent-cyan);
}

.countdown-item {
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    padding: 80px 20px 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: blink 1.5s infinite;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sub-heading {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Image wrappers styling */
.hero-image-container {
    position: relative;
    margin: 25px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.03);
}

.badge-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    z-index: 10;
}

.page-count-badge, .level-badge {
    background: rgba(5, 0, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: bold;
}

.page-count-badge {
    color: var(--accent-orange);
}

.level-badge {
    color: var(--accent-cyan);
}

/* Rating block */
.rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
}

.stars {
    color: #ffaa00;
    font-size: 14px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* Pricing stack */
.pricing-stack {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.price-row:last-of-type {
    margin-bottom: 10px;
}

.price-label {
    font-size: 13px;
    color: var(--text-muted);
}

.price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-weight: 500;
}

.price-new {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

.discount-tag {
    display: block;
    color: var(--accent-pink);
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* CTA buttons styling */
.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enroll {
    background: var(--accent-orange-gradient);
    color: var(--text-white);
}

.btn-subtext {
    font-size: 10px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.8;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(255, 95, 46, 0.4);
}

.btn:active {
    transform: scale(0.98);
}

/* Pulsing/glow keyframes */
.pulse-animation {
    animation: actionPulse 2s infinite alternate;
}

@keyframes actionPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 95, 46, 0.4);
    }
    100% {
        transform: scale(1.02);
        box-shadow: 0 0 35px rgba(255, 95, 46, 0.7);
    }
}

/* Quick Features */
.features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.feature-tag {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.feature-tag i {
    color: var(--accent-cyan);
}

/* Infinite scrolling ticker */
.ticker-wrapper {
    width: 100%;
    background-color: rgba(5, 0, 20, 0.9);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: tickerRun 25s infinite linear;
}

.ticker-item {
    display: flex;
    align-items: center;
    color: var(--text-white);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 0 20px;
    white-space: nowrap;
}

.ticker-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

@keyframes tickerRun {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Content Images general styling */
.image-card-wrapper {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-main);
    margin-bottom: 30px;
}

.content-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Learning grid cards */
.learning-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.learn-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
}

.learn-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 95, 46, 0.3);
    transform: translateY(-2px);
}

.learn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 95, 46, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.learn-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.learn-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

/* Chapter list styling */
.chapter-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chapter-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
}

.chapter-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chap-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.chap-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.chap-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Comparison section styling */
.comparison-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.highlight-item i {
    font-size: 16px;
    margin-top: 2px;
}

.text-orange {
    color: var(--accent-orange);
}

.text-green {
    color: var(--accent-green);
}

/* Bonuses section specific */
.bonus-section {
    background: linear-gradient(180deg, rgba(5,0,20,0) 0%, #0d0628 50%, rgba(5,0,20,0) 100%);
}

.glow-container {
    border: 1px dashed rgba(255, 42, 133, 0.3);
    background: rgba(255, 42, 133, 0.02);
    border-radius: 24px;
    padding: 24px 15px;
    box-shadow: inset 0 0 30px rgba(255, 42, 133, 0.05);
}

.bonus-badge {
    display: inline-block;
    color: var(--accent-pink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.bonus-images-carousel {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bonus-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill-dot {
    width: 5px;
    height: 5px;
    background-color: var(--accent-pink);
    border-radius: 50%;
}

.bonus-value-box {
    margin-top: 25px;
    text-align: center;
    padding: 15px;
    background: rgba(5, 0, 20, 0.6);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.value-title {
    font-size: 13px;
    color: var(--text-muted);
}

.value-alert {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-pink);
}

/* Pricing Card & Checkout Section */
.pricing-card {
    background: radial-gradient(circle at top right, #190e44 0%, #08031d 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.08);
    border-radius: 24px;
    padding: 30px 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-pink);
    color: var(--text-white);
    padding: 4px 30px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 2px;
}

.pricing-card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card-values {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.actual-price {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd76a 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(255, 180, 0, 0.15);
}

.slashed-price {
    font-size: 18px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.discount-pill {
    background: rgba(0, 255, 102, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(0, 255, 102, 0.2);
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 6px;
    align-self: center;
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    margin-bottom: 30px;
}

.included-item {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-checkout {
    background: linear-gradient(135deg, #00ff66 0%, #00cc52 100%);
    color: var(--text-dark);
}

.btn-checkout .btn-subtext {
    color: rgba(5, 0, 20, 0.7);
}

.pricing-card .pulse-animation {
    animation: buyPulse 1.8s infinite ease-in-out;
}

@keyframes buyPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 0 30px rgba(0, 255, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 102, 0.3);
    }
}

.security-info {
    margin-top: 20px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

.security-info span {
    color: var(--text-muted);
}

.security-info i {
    color: var(--accent-green);
    margin-right: 4px;
}

/* Testimonials / Reviews styling */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-stars {
    color: #ffaa00;
    font-size: 11px;
}

.verified-badge {
    color: #10b981;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-text {
    font-size: 14px;
    color: var(--text-white);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    color: var(--text-white);
}

.bg-avatar-1 { background-color: #3b82f6; }
.bg-avatar-2 { background-color: #10b981; }
.bg-avatar-3 { background-color: #ec4899; }

.user-details h5 {
    font-size: 13px;
    font-weight: 700;
}

.user-details small {
    font-size: 11px;
    color: var(--text-muted);
}

/* FAQ Accordion Styling */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 240, 255, 0.2);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 12px;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding-bottom: 16px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Active state for FAQs */
.faq-item.faq-active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.25);
}

.faq-item.faq-active .faq-answer {
    max-height: 200px; /* arbitrary height to slide down */
    transition: all 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.faq-active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

/* Footer Section */
.footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.footer p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.copyright {
    font-size: 10px !important;
    opacity: 0.5;
}

/* Purchase alert popup popup-in-out styles */
.purchase-alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 30px);
    max-width: 400px;
    background: rgba(12, 5, 30, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.purchase-alert.show {
    transform: translateX(-50%) translateY(0);
}

.alert-icon {
    font-size: 22px;
    color: var(--accent-green);
}

.alert-info {
    text-align: left;
}

.alert-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--text-white);
}

.alert-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.alert-time {
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Basic Blink Keyframe */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Desktop Enhancements: screen widths > 540px */
@media screen and (min-width: 540px) {
    body {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .page-wrapper {
        border-radius: 24px;
        border: 1px solid var(--border-color);
        min-height: auto;
    }
    
    .top-banner {
        top: 20px;
        border-radius: 12px 12px 0 0;
        border: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .purchase-alert {
        bottom: 40px;
        width: 380px;
    }
}

/* ==========================================
   CUSTOM PAYMENT & SUCCESS MODALS
   ========================================== */
.payment-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 0, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.payment-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.payment-modal {
    width: calc(100% - 30px);
    max-width: 420px;
    background: radial-gradient(circle at top right, #190e44 0%, #08031d 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-modal-overlay.show .payment-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent-pink);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
}

.product-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
}

.summary-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-cyan);
}

.payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background: rgba(0, 240, 255, 0.05);
    border-color: var(--accent-cyan);
    color: var(--text-white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.payment-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group input {
    background: rgba(5, 0, 20, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

.input-with-icon input {
    padding-left: 40px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.btn-pay {
    background: var(--accent-orange-gradient);
    color: var(--text-white);
    font-size: 15px;
    padding: 14px;
    margin-top: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
}

/* UPI Tab styles */
.upi-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.upi-instruction {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.qr-code-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.qr-code-box:hover {
    transform: scale(1.05);
}

.upi-or-divider {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    line-height: 0.1em;
    margin: 10px 0;
}

.upi-or-divider span {
    background: #0d0822;
    padding: 0 10px;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: bold;
    letter-spacing: 1px;
}

.upi-input-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.upi-input-row input {
    flex: 1;
    background: rgba(5, 0, 20, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.upi-input-row input:focus {
    border-color: var(--accent-cyan);
}

.btn-upi-verify {
    background: var(--accent-cyan);
    color: var(--text-dark);
    font-size: 13px;
    padding: 0 20px;
    font-weight: bold;
    border-radius: 8px;
    flex-shrink: 0;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Success Modal Styles */
.success-modal {
    max-width: 440px;
    text-align: center;
}

.success-icon {
    font-size: 56px;
    color: var(--accent-green);
    margin-bottom: 15px;
    animation: successBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes successBounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.success-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.download-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.download-box p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download-file {
    background: var(--accent-green);
    color: var(--text-dark);
    font-size: 14px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.btn-download-file.alt {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    margin-bottom: 0;
}

.btn-success-close {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    font-size: 13px;
    padding: 12px;
    border-radius: 12px;
}

.btn-success-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Spinner class for payment processing */
.btn-processing {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-processing::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 0.8s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Video Preview Styling */
.videos-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.05);
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    line-height: 0;
    overflow: hidden;
}

.video-element {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    background: #000;
}

.video-info {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 0, 20, 0.3);
}

.video-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.video-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: left;
}

.video-desc strong {
    color: var(--text-white);
}


