/* new-style.css */
/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */
:root {
    --gold: #FFED4E;
    --gold-dark: #FFD700;
    --gold-light: #FFF8CC;
    --gold-dark-rgb: 255, 237, 78;
    --black: #000000;
    --black-light: #111111;
    --black-lighter: #1A1A1A;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #888888;
    --white: #FFFFFF;
    --green: #25D366;
    --blue: #0088CC;
    --red: #FF4444;
    --shadow: rgba(255, 237, 78, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */
.mb-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 237, 78, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.mb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.mb-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.mb-logo img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.mb-logo span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.mb-nav {
    display: flex;
    align-items: center;
}

.mb-nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.mb-nav-menu > li {
    position: relative;
}

.mb-nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mb-nav-menu a:hover {
    color: var(--gold);
}

.mb-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.mb-nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 220px;
    border-radius: 8px;
    padding: 15px 0;
    display: none;
    border: 1px solid rgba(255, 237, 78, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(255, 237, 78, 0.1);
    color: var(--gold);
    padding-left: 25px;
}

/* CTA Button in Header */
.mb-cta-btn {
    background: var(--gold);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-left: 15px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.mb-cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 237, 78, 0.3);
}

/* Mobile Menu Icon */
.mb-mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mb-mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Dropdown */
.mb-mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1px solid rgba(255, 237, 78, 0.2);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    backdrop-filter: blur(20px);
}

.mb-mobile-dropdown.active {
    display: block;
}

.mb-mobile-dropdown ul {
    list-style: none;
}

.mb-mobile-dropdown ul li {
    margin-bottom: 10px;
}

.mb-mobile-dropdown ul li a {
    color: var(--white);
    text-decoration: none;
    padding: 12px 15px;
    display: block;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.mb-mobile-dropdown ul li a:hover {
    background: rgba(255, 237, 78, 0.1);
    color: var(--gold);
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    padding: 12px 15px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.mobile-dropdown-btn::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-btn.active::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    margin-top: 5px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    margin-bottom: 5px;
}

.mobile-submenu a {
    padding: 10px 15px !important;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.mb-mobile-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    text-align: center;
    font-weight: 600;
    margin-top: 15px !important;
}

.mb-mobile-cta:hover {
    background: var(--gold-dark) !important;
    color: var(--black) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 180px 5% 100px; /* Added horizontal padding */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.95));
    margin-top: 70px;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.hero-content {
    padding-right: 20px; /* Extra spacing for content */
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.welcome-text {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.welcome-text strong {
    color: var(--gold);
}

.hero-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-benefits {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.hero-benefits li {
    padding: 10px 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 30px;
}

.hero-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-cta-text {
    font-size: 1.2rem;
    color: var(--gold);
    margin: 2rem 0;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: #e6c300;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 237, 78, 0.3);
}

.btn-secondary {
    background: var(--green);
    color: var(--white);
}

.btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.hero-image {
    padding-left: 20px; /* Extra spacing for image */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 237, 78, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero {
        padding: 150px 5% 80px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 5% 60px;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        padding-left: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-benefits li {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 5% 50px;
        margin-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .welcome-text {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 5% 40px;
        gap: 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-cta-text {
        font-size: 1rem;
    }
}
/* ==========================================================================
   KEYWORD MASTER SECTION
   ========================================================================== */
.mbid-keyword-master {
    background: var(--black-light);
}

.mbid-keyword-master h2 {
    color: var(--gold);
    margin-bottom: 2rem;
}

.mbid-keyword-master h3 {
    color: var(--gold);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.mbid-keyword-master p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mbid-keyword-master a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.mbid-keyword-master a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ==========================================================================
   STORY SECTION
   ========================================================================== */
.story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.9));
    text-align: center;
}

.story-section h2 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.story-section p {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.story-section strong {
    color: var(--gold);
}

.story-problems, .story-benefits {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.story-problems li, .story-benefits li {
    padding: 20px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    color: var(--gray-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.story-problems li:hover, .story-benefits li:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.story-section em {
    color: var(--gold);
    font-style: italic;
}

/* ==========================================================================
   EXPERIENCE SECTION
   ========================================================================== */
.experience-section {
    background: var(--black-light);
}

.experience-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.exp-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.exp-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.exp-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: block;
}

.exp-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.exp-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

.section-outro {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 3rem auto 0;
    line-height: 1.8;
}

/* ==========================================================================
   EDUCATION SECTION
   ========================================================================== */
.intro-education {
    text-align: center;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem auto;
    max-width: 800px;
    padding: 20px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 237, 78, 0.1);
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.edu-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.edu-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.edu-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.edu-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.community-testimonials-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.9));
}

.testimonials-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.review-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.reviewer-name {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-location {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--gray-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
}

.join-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 30px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
}

.join-cta p {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 237, 78, 0.3);
}

/* ==========================================================================
   ID GATEWAY SECTION
   ========================================================================== */
.id-gateway-section {
    background: var(--black-light);
}

.id-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.id-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.id-step {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
}

.id-step:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.id-step h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.id-step p {
    color: var(--gray-light);
    line-height: 1.7;
}

.id-highlight {
    text-align: center;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2rem;
    padding: 20px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 237, 78, 0.1);
}

.id-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 237, 78, 0.2);
}

/* ==========================================================================
   PLATFORM STATS SECTION
   ========================================================================== */
/* ==========================================================================
   PLATFORM STATS SECTION
   ========================================================================== */
.platform-stats-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.9));
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-intro {
    text-align: center;
    color: var(--gray-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Fixed 2 columns */
    gap: 30px;
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem; /* Reduced from 3rem */
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    overflow: visible;
}

/* Add thousand separators styling */
.stat-number::after {
    content: '+';
    font-size: 2rem;
    opacity: 0.7;
    margin-left: 5px;
}

.stat-box:nth-child(2) .stat-number::after {
    content: '+';
}

.stat-box:nth-child(3) .stat-number::after {
    content: '%';
}

.stat-box:nth-child(4) .stat-number::after {
    content: 'min';
    font-size: 1.5rem;
    margin-left: 10px;
}

.stat-box:nth-child(5) .stat-number::after {
    content: 'hrs';
    font-size: 1.5rem;
    margin-left: 10px;
}

.stat-box:nth-child(6) .stat-number::after {
    content: '%';
}

.stat-label {
    color: var(--gray-light);
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 90%;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns on tablet */
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .platform-stats-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr; /* Switch to 1 column on mobile */
        max-width: 500px;
        margin: 3rem auto 0;
        gap: 20px;
    }
    
    .stat-box {
        padding: 30px 15px;
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-number::after {
        font-size: 1.5rem;
    }
    
    .stat-box:nth-child(4) .stat-number::after,
    .stat-box:nth-child(5) .stat-number::after {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-box {
        padding: 25px 15px;
        min-height: 150px;
    }
}

/* Animation for counting numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease-out forwards;
}

/* JavaScript helper class for responsive font sizes */
@media (max-width: 1200px) {
    .stat-number {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
}

/* ==========================================================================
   SPORTS SECTION
   ========================================================================== */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.sport-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.sport-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.sport-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sport-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
}

.sport-card p {
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
}

/* ==========================================================================
   EXPERIENCE STEPS SECTION
   ========================================================================== */
.experience-steps {
    max-width: 800px;
    margin: 3rem auto 0;
}

.exp-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
}

.exp-step:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.exp-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--black);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.exp-content h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.exp-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   PAYMENTS SECTION
   ========================================================================== */
.payments-section {
    background: var(--black-light);
}

.payments-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.payments-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.payment-feature {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.payment-feature:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.feature-icon::before {
    content: '₹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--black);
    font-size: 1.8rem;
    font-weight: bold;
}

.payment-feature h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.payment-feature p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   APP EXPERIENCE SECTION
   ========================================================================== */
.app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text-content p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-benefits-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.app-benefits-list li {
    padding: 10px 0;
    color: var(--gray-light);
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
}

.app-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.app-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 237, 78, 0.2);
}

/* ==========================================================================
   SECURITY SECTION
   ========================================================================== */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.security-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    text-align: center;
}

.security-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    position: relative;
}

.shield-icon {
    background: var(--gold);
}

.shield-icon::before {
    content: '🛡️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.fairness-icon {
    background: var(--green);
}

.fairness-icon::before {
    content: '⚖️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.lock-icon {
    background: var(--blue);
}

.lock-icon::before {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.verify-icon {
    background: var(--red);
}

.verify-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--white);
}

.security-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

.security-note {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    margin-top: 3rem;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: rgba(255, 237, 78, 0.1);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid rgba(255, 237, 78, 0.2);
}

.comparison-table td {
    padding: 20px;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
    line-height: 1.7;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 237, 78, 0.03);
}

.checkmark {
    color: var(--green);
    font-size: 1.5rem;
    font-weight: bold;
}

.crossmark {
    color: var(--red);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ==========================================================================
   TRUST TEAM SECTION
   ========================================================================== */
.trust-team-section {
    background: var(--black-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.trust-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.trust-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.trust-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.trust-card p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */
.team-intro {
    color: var(--gray-light);
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.team-card {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    margin: 0 auto 1.5rem;
}

.team-name {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.team-desc {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.team-credentials li {
    background: rgba(255, 237, 78, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================================================
   VISION SECTION
   ========================================================================== */
.parallax-vision {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.95));
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 237, 78, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.vision-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.vision-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.vision-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.vision-row:nth-child(odd) {
    flex-direction: row-reverse;
}

.vision-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.vision-content {
    flex: 1;
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 0 20px;
    transition: var(--transition);
}

.vision-content:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.vision-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.vision-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   AWARDS SECTION
   ========================================================================== */
.awards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.award-item {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.award-item:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
}

.award-icon::before {
    content: '🏆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.award-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.award-item p {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ==========================================================================
   KEYWORD ACCORDION SECTION
   ========================================================================== */
.keyword-accordion-section {
    background: var(--black-light);
}

.accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 237, 78, 0.03);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: rgba(255, 237, 78, 0.05);
    border: none;
    text-align: left;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 237, 78, 0.1);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-body {
    padding: 20px;
    max-height: 500px;
}

.accordion-body p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accordion-body a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.accordion-body a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIBLE BETTING SECTION
   ========================================================================== */
.responsible-betting-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(17, 17, 17, 0.95));
}

.responsible-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.responsible-block {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.responsible-block:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.responsible-block h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
}

.responsible-block p {
    color: var(--gray-light);
    line-height: 1.7;
}

.responsible-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 30px 0;
}

.responsible-note {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    margin-top: 3rem;
}

/* ==========================================================================
   TRUST CLOSURE SECTION
   ========================================================================== */
.trust-closure-section {
    background: var(--black-light);
}

.trust-points {
    max-width: 900px;
    margin: 3rem auto 0;
}

.trust-points p {
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 25px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: var(--transition);
}

.trust-points p:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.trust-footer-note {
    text-align: center;
    color: var(--gold);
    font-size: 1.1rem;
    padding: 30px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    margin-top: 3rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 237, 78, 0.03);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: rgba(255, 237, 78, 0.05);
    border: none;
    text-align: left;
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 237, 78, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   GET STARTED SECTION
   ========================================================================== */
.get-started-flow {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.get-started-flow::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.step-line {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.step-count {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(255, 237, 78, 0.3);
}

.step-content {
    flex: 1;
    background: rgba(255, 237, 78, 0.05);
    border: 1px solid rgba(255, 237, 78, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.step-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray-light);
    line-height: 1.7;
}

.get-started-note {
    text-align: center;
    color: var(--gray-light);
    font-size: 1.1rem;
    padding: 30px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    margin-top: 3rem;
    line-height: 1.8;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
/* Footer */
    .mb-footer {
      background-color: var(--darker-bg);
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
    }
    
    .mb-footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }
    
    .mb-footer-col h3, .mb-footer-col h4 {
      color: var(--primary-color);
      margin-bottom: 20px;
      font-size: 1.3rem;
    }
    
    .mb-footer-col ul {
      list-style: none;
    }
    
    .mb-footer-col li {
      margin-bottom: 12px;
    }
    
    .mb-footer-col a {
      color: var(--text-light);
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
      padding: 5px 0;
    }
    
    .mb-footer-col a:hover {
      color: var(--primary-color);
      transform: translateX(5px);
    }
    
    .mb-footer-text {
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }
    
    .mb-social-icons {
      display: flex;
      gap: 15px;
    }
    
    .mb-social-icons a {
      display: inline-block;
      transition: var(--transition);
    }
    
    .mb-social-icons a:hover {
      transform: translateY(-3px);
    }
    
    .mb-social-icons img {
      width: 24px;
      height: 24px;
    }
    
    .mb-contact-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .mb-contact-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-light);
    }
    
    .mb-icon {
      width: 20px;
      height: 20px;
      filter: invert(1) brightness(0.7);
    }
    
    .mb-footer-bottom {
      text-align: center;
      padding-top: 30px;
      margin-top: 40px;
      border-top: 1px solid var(--border-color);
      color: var(--text-light);
    }
/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 150px 0 80px;
    }
    
    .id-layout, .app-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .id-image, .app-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation on mobile */
    .mb-nav {
        display: none;
    }
    
    .mb-cta-btn {
        display: none;
    }
    
    /* Show mobile menu icon */
    .mb-mobile-menu {
        display: flex;
    }
    
    /* Adjust hero section */
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    /* Adjust sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::after {
        width: 80px;
    }
    
    /* Adjust grids */
    .experience-grid,
    .education-cards,
    .testimonials-enhanced-grid,
    .id-step-grid,
    .stats-grid,
    .sports-grid,
    .payments-features,
    .security-grid,
    .trust-grid,
    .team-grid,
    .awards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Adjust steps */
    .exp-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .vision-row, .vision-row:nth-child(odd) {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-timeline::before {
        left: 40px;
    }
    
    .vision-content {
        margin: 0;
        margin-top: 20px;
    }
    
    /* Adjust footer */
    .mb-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* WhatsApp button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary, .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .step-line {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-count {
        align-self: center;
    }
    
    .vision-timeline::before {
        left: 20px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-1 { padding: 1rem 0; }
.py-2 { padding: 2rem 0; }
.py-3 { padding: 3rem 0; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   JAVASITP SUPPORT
   ========================================================================== */
.stat-number.animated {
    transition: all 1s ease-out;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .mb-header, .mb-footer, .whatsapp-float {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .section-title {
        color: #000;
    }
    
    .section-title::after {
        background: #000;
    }
}
/* ==========================================================================
   MAHADEV BOOK SECTION
   ========================================================================== */
#section-mahadev-book {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#section-mahadev-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    z-index: 1;
}

#section-mahadev-book > div {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Title */
#section-mahadev-book h2 {
    font-size: 2.8rem;                                
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 1px;
}



#section-mahadev-book h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Micro Intro */
#section-mahadev-book > div > p {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3.5rem;
    color: var(--gray-light);
    padding: 1.5rem;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Q&A Container */
#section-mahadev-book > div > div:first-of-type {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

/* Individual Q&A Box */
#section-mahadev-book > div > div:first-of-type > div {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

#section-mahadev-book > div > div:first-of-type > div:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 25px rgba(255, 237, 78, 0.15);
}

#section-mahadev-book > div > div:first-of-type > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

/* Q&A Text Styling */
#section-mahadev-book > div > div:first-of-type > div p {
    margin: 0;
    line-height: 1.6;
}

#section-mahadev-book > div > div:first-of-type > div p:first-child {
    margin-bottom: 1rem;
}

#section-mahadev-book > div > div:first-of-type > div p strong {
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

#section-mahadev-book > div > div:first-of-type > div p:not(:first-child) {
    color: var(--gray-light);
    font-size: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 237, 78, 0.3);
    margin-left: 0.5rem;
}

/* Why it matters box */
#section-mahadev-book > div > div:last-of-type {
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 237, 78, 0.2);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

#section-mahadev-book > div > div:last-of-type::before {
    content: '💡';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
}

#section-mahadev-book > div > div:last-of-type p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-light);
    padding-left: 3rem;
}

#section-mahadev-book > div > div:last-of-type p strong {
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
}

/* Decorative elements */
#section-mahadev-book .decorative-corner {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.05;
    z-index: 0;
}

#section-mahadev-book .corner-1 {
    top: 0;
    left: 0;
    background: radial-gradient(circle at top left, var(--gold), transparent 70%);
}

#section-mahadev-book .corner-2 {
    bottom: 0;
    right: 0;
    background: radial-gradient(circle at bottom right, var(--gold), transparent 70%);
}

/* Responsive Design */
@media (max-width: 768px) {
    #section-mahadev-book {
        padding: 60px 0;
    }
    
    #section-mahadev-book h2 {
        font-size: 2.2rem;
    }
    
    #section-mahadev-book > div > p {
        font-size: 1.1rem;
        padding: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    #section-mahadev-book > div > div:first-of-type {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    #section-mahadev-book > div > div:first-of-type > div {
        padding: 1.5rem;
    }
    
    #section-mahadev-book > div > div:last-of-type {
        padding: 2rem 1.5rem;
    }
    
    #section-mahadev-book > div > div:last-of-type p {
        padding-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    #section-mahadev-book h2 {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
    
    #section-mahadev-book h2::after {
        width: 80px;
    }
    
    #section-mahadev-book > div > div:last-of-type p {
        padding-left: 0;
    }
    
    #section-mahadev-book > div > div:last-of-type::before {
        position: static;
        display: block;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    #section-mahadev-book .decorative-corner {
        display: none;
    }
}

/* Animation for fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#section-mahadev-book > div > div:first-of-type > div {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

#section-mahadev-book > div > div:first-of-type > div:nth-child(1) {
    animation-delay: 0.1s;
}

#section-mahadev-book > div > div:first-of-type > div:nth-child(2) {
    animation-delay: 0.2s;
}

#section-mahadev-book > div > div:first-of-type > div:nth-child(3) {
    animation-delay: 0.3s;
}

/* ==========================================================================
   MAHADEV BOOK ID ACCESS SECTION - UNIQUE DESIGN
   ========================================================================== */
#section-mahadev-book-id-access {
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 237, 78, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, var(--black-light) 0%, #0a0a0a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

/* Unique Decorative Corners */
.decorative-corner.id-corner-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 0% 0%, var(--gold) 0%, transparent 70%);
    opacity: 0.03;
    z-index: 1;
}

.decorative-corner.id-corner-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 100% 100%, var(--gold-dark) 0%, transparent 70%);
    opacity: 0.03;
    z-index: 1;
}

/* Animated Border Effect */
#section-mahadev-book-id-access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        var(--gold-dark), 
        var(--gold), 
        transparent);
    background-size: 200% 100%;
    animation: borderFlow 4s linear infinite;
    z-index: 1;
}

@keyframes borderFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Content Wrapper */
.id-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Heading - Unique Style */
#section-mahadev-book-id-access h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 25px;
    color: var(--white);
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Gradient Text Effect */
#section-mahadev-book-id-access h2 span {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

/* Unique Underline */
#section-mahadev-book-id-access h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 237, 78, 0.3);
}

/* Micro Intro - Card Style */
#section-mahadev-book-id-access > .id-content-wrapper > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--gray-light);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 237, 78, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 237, 78, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Micro Intro Decorative Corners */
#section-mahadev-book-id-access > .id-content-wrapper > p::before,
#section-mahadev-book-id-access > .id-content-wrapper > p::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold);
    opacity: 0.2;
}

#section-mahadev-book-id-access > .id-content-wrapper > p::before {
    top: 15px;
    left: 15px;
    border-right: 0;
    border-bottom: 0;
}

#section-mahadev-book-id-access > .id-content-wrapper > p::after {
    bottom: 15px;
    right: 15px;
    border-left: 0;
    border-top: 0;
}

/* Info Blocks Container */
.id-info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Individual Info Items - Unique Card Design */
.id-info-item {
    background: 
        linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(17, 17, 17, 0.6)),
        linear-gradient(135deg, transparent 30px, rgba(255, 237, 78, 0.1) 30px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 237, 78, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Unique Number Indicator */
.id-info-item::before {
    content: attr(data-count);
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 237, 78, 0.3);
    z-index: 1;
}

/* Add data-count attributes to your HTML for numbers */
.id-info-item:nth-child(1) { --item-number: "01"; }
.id-info-item:nth-child(2) { --item-number: "02"; }
.id-info-item:nth-child(3) { --item-number: "03"; }

.id-info-item::before {
    content: var(--item-number);
}

/* Hover Effects */
.id-info-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 
        0 20px 50px rgba(255, 237, 78, 0.15),
        0 0 0 1px rgba(255, 237, 78, 0.2),
        inset 0 1px 0 rgba(255, 237, 78, 0.1);
}

/* Shine effect on hover */
.id-info-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 237, 78, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.id-info-item:hover::after {
    opacity: 1;
    animation: shine 1s forwards;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Info Item Text Styling */
.id-info-item p {
    margin: 0;
    line-height: 1.7;
}

.id-info-item p:first-child {
    margin-bottom: 1.5rem;
    padding-left: 50px; /* Space for the number */
}

.id-info-item p strong {
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.id-info-item p:not(:first-child) {
    color: var(--gray-light);
    font-size: 1.05rem;
    padding-left: 15px;
    border-left: 3px solid rgba(255, 237, 78, 0.3);
    position: relative;
}

.id-info-item p:not(:first-child)::before {
    content: '→';
    position: absolute;
    left: -10px;
    color: var(--gold);
    opacity: 0.5;
    font-size: 1.2rem;
}

/* Why It Matters Block - Unique Design */
.id-why-matters {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%,
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.id-why-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark), var(--gold));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Why It Matters Content */
.id-why-matters p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-light);
    position: relative;
    z-index: 2;
}

.id-why-matters p strong {
    color: var(--gold);
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-right: 15px;
}

.id-why-matters p strong::after {
    content: '💡';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 237, 78, 0.5));
}

/* Background Pattern */
.id-why-matters::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 237, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    #section-mahadev-book-id-access h2 {
        font-size: 2.4rem;
    }
    
    .id-info-blocks {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 4rem;
    }
    
    .id-why-matters {
        padding: 2.5rem;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    #section-mahadev-book-id-access {
        padding: 70px 0;
    }
    
    #section-mahadev-book-id-access h2 {
        font-size: 2rem;
        padding-bottom: 20px;
    }
    
    #section-mahadev-book-id-access h2::after {
        width: 100px;
    }
    
    #section-mahadev-book-id-access > .id-content-wrapper > p {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .id-info-item {
        padding: 2rem;
    }
    
    .id-why-matters {
        padding: 2rem;
    }
    
    .id-why-matters p {
        font-size: 1.05rem;
    }
    
    .id-why-matters p strong::after {
        position: static;
        transform: none;
        margin-left: 10px;
    }
}

@media (max-width: 480px) {
    #section-mahadev-book-id-access h2 {
        font-size: 1.8rem;
    }
    
    .id-info-item {
        padding: 1.5rem;
    }
    
    .id-info-item p:first-child {
        padding-left: 40px;
    }
    
    .id-info-item::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .id-why-matters {
        padding: 1.5rem;
    }
}

/* Unique Animation for Items */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.id-info-item {
    animation: fadeInSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.id-info-item:nth-child(1) { animation-delay: 0.1s; }
.id-info-item:nth-child(2) { animation-delay: 0.2s; }
.id-info-item:nth-child(3) { animation-delay: 0.3s; }

/* Unique Hover Effect for Why Matters */
.id-why-matters {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.id-why-matters:hover {
    transform: translateY(-5px);
}
/* ==========================================================================
   MAHADEV BOOK LOGIN FLOW SECTION - UNIQUE PROBLEM/SOLUTION DESIGN
   ========================================================================== */
#section-mahadev-book-login-flow {
    background: 
        linear-gradient(135deg, #0a0a0a 0%, var(--black-light) 50%, #080808 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 237, 78, 0.01) 10px,
            rgba(255, 237, 78, 0.01) 20px
        );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
}

/* Unique Circuit Pattern Background */
#section-mahadev-book-login-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 237, 78, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 237, 78, 0.03) 0%, transparent 20%),
        linear-gradient(45deg, transparent 49%, rgba(255, 237, 78, 0.02) 49%, rgba(255, 237, 78, 0.02) 51%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 237, 78, 0.02) 49%, rgba(255, 237, 78, 0.02) 51%, transparent 51%);
    background-size: 200px 200px, 200px 200px, 50px 50px, 50px 50px;
    opacity: 0.3;
    z-index: 0;
}

/* Decorative Circuit Lines */
#section-mahadev-book-login-flow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 237, 78, 0.1),
        rgba(255, 237, 78, 0.2),
        rgba(255, 237, 78, 0.1),
        transparent
    );
    z-index: 0;
}

/* Decorative Corners - Circuit Style */
.decorative-corner.login-corner-1 {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 150px;
    height: 150px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    opacity: 0.2;
    z-index: 1;
}

.decorative-corner.login-corner-2 {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 150px;
    height: 150px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    opacity: 0.2;
    z-index: 1;
}

/* Content Wrapper */
.login-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Heading - Circuit Board Style */
#section-mahadev-book-login-flow h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 25px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Circuit Board Connection Points */
#section-mahadev-book-login-flow h2::before,
#section-mahadev-book-login-flow h2::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    bottom: 20px;
    box-shadow: 0 0 10px rgba(255, 237, 78, 0.5);
}

#section-mahadev-book-login-flow h2::before {
    left: calc(50% - 100px);
}

#section-mahadev-book-login-flow h2::after {
    right: calc(50% - 100px);
}

/* Connecting Line */
#section-mahadev-book-login-flow h2 span {
    position: relative;
    display: inline-block;
}

#section-mahadev-book-login-flow h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 3px;
}

/* Micro Intro - Terminal Style */
#section-mahadev-book-login-flow .login-content-wrapper > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--gray-light);
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 237, 78, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 237, 78, 0.1);
    position: relative;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* Terminal Blinking Cursor */
#section-mahadev-book-login-flow .login-content-wrapper > p::after {
    content: '|';
    position: absolute;
    right: 25px;
    bottom: 25px;
    color: var(--gold);
    animation: blink 1s infinite;
    font-weight: bold;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Terminal Header */
#section-mahadev-book-login-flow .login-content-wrapper > p::before {
    content: 'Login Flow Analysis';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--gold);
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 237, 78, 0.2);
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif;
}

/* Issue Blocks Container */
.login-issue-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Individual Issue Items - Problem/Solution Card */
.login-issue-item {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.8), rgba(17, 17, 17, 0.8));
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 237, 78, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Connection Nodes on Cards */
.login-issue-item::before,
.login-issue-item::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
}

.login-issue-item::before {
    top: 15px;
    left: 15px;
}

.login-issue-item::after {
    bottom: 15px;
    right: 15px;
}

/* Problem Section Styling */
.login-issue-item p:first-child {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.login-issue-item p:first-child::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

.login-issue-item p:first-child strong {
    color: #ff6b6b; /* Red-orange for problems */
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
    padding-bottom: 0.5rem;
}

/* Problem Description */
.login-issue-item p:nth-child(2) {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-left: 30px;
    position: relative;
    border-left: 3px solid rgba(255, 107, 107, 0.2);
    padding-left: 20px;
    margin-left: 10px;
}

/* Solution Section */
.login-issue-item p:last-child {
    background: rgba(255, 237, 78, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 237, 78, 0.1);
    position: relative;
}

.login-issue-item p:last-child::before {
    content: '🔧';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--black);
    padding: 0 10px;
    font-size: 1rem;
}

.login-issue-item p:last-child strong {
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.login-issue-item p:last-child {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Hover Effects */
.login-issue-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 
        0 20px 50px rgba(255, 237, 78, 0.15),
        0 0 0 1px rgba(255, 237, 78, 0.2);
}

/* Connection Lines on Hover */
.login-issue-item:hover::before,
.login-issue-item:hover::after {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 237, 78, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 237, 78, 0); }
}

/* Data Flow Animation */
.login-issue-item:hover .data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 237, 78, 0.05),
        transparent
    );
    animation: dataFlow 2s linear infinite;
    z-index: -1;
}

@keyframes dataFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Why It Matters - Solution Summary */
.login-why-matters {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%,
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 3rem;
    border: 2px solid transparent;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Circuit Border */
.login-why-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Content */
.login-why-matters p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-light);
    position: relative;
    z-index: 2;
}

.login-why-matters p strong {
    color: var(--gold);
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

/* Checkmark Icon */
.login-why-matters p strong::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 237, 78, 0.3);
}

/* Animated Background Dots */
.login-why-matters::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 237, 78, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    #section-mahadev-book-login-flow h2 {
        font-size: 2.4rem;
    }
    
    .login-issue-blocks {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 4rem;
    }
    
    .login-why-matters {
        padding: 2.5rem;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    #section-mahadev-book-login-flow {
        padding: 70px 0;
    }
    
    #section-mahadev-book-login-flow h2 {
        font-size: 2rem;
        padding-bottom: 20px;
    }
    
    #section-mahadev-book-login-flow h2::before,
    #section-mahadev-book-login-flow h2::after {
        display: none;
    }
    
    #section-mahadev-book-login-flow .login-content-wrapper > p {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .login-issue-item {
        padding: 2rem;
    }
    
    .login-issue-item p:first-child {
        padding-left: 25px;
    }
    
    .login-issue-item p:nth-child(2) {
        padding-left: 15px;
        margin-left: 5px;
    }
    
    .login-why-matters {
        padding: 2rem;
    }
    
    .login-why-matters p {
        font-size: 1.05rem;
    }
    
    .login-why-matters p strong::before {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #section-mahadev-book-login-flow h2 {
        font-size: 1.8rem;
    }
    
    .login-issue-item {
        padding: 1.5rem;
    }
    
    #section-mahadev-book-login-flow .login-content-wrapper > p {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .login-why-matters {
        padding: 1.5rem;
    }
    
    .login-why-matters p strong {
        padding-left: 35px;
    }
}

/* Unique Entry Animations */
@keyframes circuitConnect {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.login-issue-item {
    animation: circuitConnect 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    animation-delay: calc(var(--item-index, 0) * 0.2s);
}

/* Add these to your HTML for animation delay */
.login-issue-item:nth-child(1) { --item-index: 1; }
.login-issue-item:nth-child(2) { --item-index: 2; }
.login-issue-item:nth-child(3) { --item-index: 3; }

/* Terminal Typing Animation */
#section-mahadev-book-login-flow .login-content-wrapper > p {
    overflow: hidden;
    border-right: 2px solid var(--gold);
    white-space: normal;
    animation: 
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--gold); }
}
/* ==========================================================================
   MAHADEV BETTING STORY SECTION - BLACK & GOLD THEME
   ========================================================================== */
#section-mahadev-betting-story {
    background: linear-gradient(135deg, 
        var(--black-light) 0%, 
        #0a0a0a 50%, 
        var(--black-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

/* Decorative Elements */
#section-mahadev-betting-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 237, 78, 0.3), 
        transparent);
    opacity: 0.3;
}

#section-mahadev-betting-story::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 237, 78, 0.3), 
        transparent);
    opacity: 0.3;
}

/* Container */
.betting-story-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Heading */
.betting-story-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.betting-story-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    border-radius: 2px;
}

/* Story Intro */
.betting-story-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    color: var(--gray-light);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.betting-story-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 237, 78, 0.1) 0%, 
        transparent 100%);
    z-index: -1;
    border-radius: 0 12px 12px 0;
}

/* Story Flow Container */
.betting-story-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

/* Individual Betting Moments */
.betting-moment {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.15);
    position: relative;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.betting-moment:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

/* Hover Shine Effect */
.betting-moment::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 237, 78, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.betting-moment:hover::after {
    opacity: 1;
    animation: shine 1s forwards;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Moment Heading */
.betting-moment p:first-child {
    margin-bottom: 1.5rem;
}

.betting-moment p:first-child strong {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 30px;
}

/* Icon for each moment */
.betting-moment:nth-child(1) p:first-child strong::before {
    content: '🏏';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.betting-moment:nth-child(2) p:first-child strong::before {
    content: '🎰';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Moment Content */
.betting-moment p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.betting-moment p:last-child {
    margin-bottom: 0;
}

/* Value Statement */
.betting-story-value {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.betting-story-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Value Content */
.betting-story-value p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    position: relative;
    z-index: 2;
}

.betting-story-value p strong {
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

/* Light Bulb Icon */
.betting-story-value p strong::before {
    content: '💡';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 237, 78, 0.5));
}

/* Background Pattern */
.betting-story-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 237, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .betting-story-container h2 {
        font-size: 2.2rem;
    }
    
    .betting-story-flow {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .betting-story-value {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #section-mahadev-betting-story {
        padding: 60px 0;
    }
    
    .betting-story-container h2 {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
    
    .betting-story-container h2::after {
        width: 80px;
    }
    
    .betting-story-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .betting-moment {
        padding: 25px;
    }
    
    .betting-moment p:first-child strong::before {
        font-size: 1.2rem;
    }
    
    .betting-story-value p strong::before {
        font-size: 1.3rem;
        left: -5px;
    }
}

@media (max-width: 480px) {
    .betting-story-container h2 {
        font-size: 1.6rem;
    }
    
    .betting-moment {
        padding: 20px;
    }
    
    .betting-moment p:first-child strong {
        padding-left: 25px;
        font-size: 1.1rem;
    }
    
    .betting-story-value {
        padding: 20px;
    }
    
    .betting-story-value p {
        font-size: 1rem;
    }
    
    .betting-story-value p strong {
        padding-left: 35px;
        font-size: 1.1rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.betting-story-container h2,
.betting-story-intro,
.betting-moment,
.betting-story-value {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.betting-story-intro {
    animation-delay: 0.1s;
}

.betting-moment:nth-child(1) {
    animation-delay: 0.2s;
}

.betting-moment:nth-child(2) {
    animation-delay: 0.3s;
}

.betting-story-value {
    animation-delay: 0.4s;
}

/* Section Indicator */
.betting-story-indicator {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1;
    opacity: 0.5;
}

.betting-story-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    transition: var(--transition);
}

.betting-story-indicator span.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Corner Accents */
.betting-corner-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    opacity: 0.05;
    z-index: 0;
}

.betting-corner-1 {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.betting-corner-2 {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Progress Bar for Story */
.betting-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        var(--gold-dark) 50%, 
        var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 1;
}

#section-mahadev-betting-story:hover .betting-progress-bar {
    transform: scaleX(1);
}


/* ==========================================================================
   MAHADEV BETTING APP SECTION - 2026 UPGRADES
   ========================================================================== */
#section-mahadev-betting-app {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        var(--black-light) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
}

/* Tech Pattern Background */
#section-mahadev-betting-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 237, 78, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 237, 78, 0.02) 0%, transparent 20%),
        linear-gradient(45deg, transparent 49.5%, rgba(255, 237, 78, 0.02) 49.5%, rgba(255, 237, 78, 0.02) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgba(255, 237, 78, 0.02) 49.5%, rgba(255, 237, 78, 0.02) 50.5%, transparent 50.5%);
    background-size: 200px 200px, 200px 200px, 40px 40px, 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

/* Container */
.betting-app-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.betting-app-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.betting-app-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    border-radius: 2px;
}

/* Micro Intro */
.app-micro-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    color: var(--gray-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* Play Choice Section */
.play-choice-section h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.play-choice-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

/* Scenario Box */
.scenario-box {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 237, 78, 0.1);
    position: relative;
}

.scenario-box p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    text-align: center;
}

.scenario-box::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

.scenario-box::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: serif;
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 2.5rem;
}

/* Advantage Card */
.advantage-card {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.advantage-card h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* Advantage List */
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.advantage-list li:last-child {
    margin-bottom: 0;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* App-specific styling */
.advantage-card:first-child .advantage-list li::before {
    content: '📱';
    font-size: 1rem;
    background: rgba(255, 237, 78, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Website-specific styling */
.advantage-card:last-child .advantage-list li::before {
    content: '🌐';
    font-size: 1rem;
    background: rgba(255, 237, 78, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Line */
.bottom-line {
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 237, 78, 0.15);
    position: relative;
}

.bottom-line h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.bottom-line h4::before {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.bottom-line p {
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Why Matters Box */
.why-matters-box {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.why-matters-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-matters-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    position: relative;
    z-index: 2;
}

.why-matters-box p strong {
    color: var(--gold);
    font-size: 1.2rem;
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
}

/* Background Pattern */
.why-matters-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 237, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 237, 78, 0.03) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Year 2026 Badge */
.year-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 237, 78, 0.3);
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .betting-app-container h2 {
        font-size: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    .play-choice-section h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    #section-mahadev-betting-app {
        padding: 60px 0;
    }
    
    .betting-app-container h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }
    
    .app-micro-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .play-choice-section h3 {
        font-size: 1.5rem;
    }
    
    .advantage-card {
        padding: 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .advantage-card h4 {
        font-size: 1.2rem;
    }
    
    .bottom-line,
    .why-matters-box {
        padding: 20px;
    }
    
    .why-matters-box p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .betting-app-container h2 {
        font-size: 1.6rem;
    }
    
    .play-choice-section h3 {
        font-size: 1.4rem;
    }
    
    .advantage-card {
        padding: 15px;
    }
    
    .advantage-list li {
        padding-left: 22px;
        font-size: 0.95rem;
    }
    
    .bottom-line h4,
    .why-matters-box p strong {
        font-size: 1.1rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.betting-app-container h2,
.app-micro-intro,
.play-choice-section,
.why-matters-box {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.app-micro-intro {
    animation-delay: 0.1s;
}

.play-choice-section {
    animation-delay: 0.2s;
}

.why-matters-box {
    animation-delay: 0.3s;
}

/* Hover effect for cards */
.advantage-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* Progress indicator for tech theme */
.tech-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#section-mahadev-betting-app:hover .tech-progress {
    opacity: 0.5;
}

/* Add year badges to HTML (optional JavaScript can add these) */
/* To add year badges to advantage cards, you can add this to your HTML:
<div class="year-badge">2026</div>
inside each .advantage-card */


/* ==========================================================================
   MAHADEV BOOK WHATSAPP SUPPORT SECTION
   ========================================================================== */
#section-mahadev-whatsapp-support {
    background: linear-gradient(135deg, 
        var(--black-light) 0%, 
        #0c0c0c 50%, 
        var(--black-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

/* WhatsApp Pattern Background */
#section-mahadev-whatsapp-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 211, 102, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(37, 211, 102, 0.03) 0%, transparent 30%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 237, 78, 0.02) 2px,
            rgba(255, 237, 78, 0.02) 4px
        );
    opacity: 0.5;
    z-index: 0;
}

/* Container */
.whatsapp-support-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.whatsapp-support-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.whatsapp-support-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--green), 
        transparent);
    border-radius: 2px;
}

/* Micro Intro */
.whatsapp-micro-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.1);
    color: var(--gray-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* WhatsApp wave effect in background */
.whatsapp-micro-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    animation: wave 20s linear infinite;
    z-index: -1;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Story Examples Section */
.story-examples-section h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.story-examples-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

/* Scenario Cards */
.scenario-card {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    padding: 0;
    border: 1px solid rgba(255, 237, 78, 0.15);
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

/* Scenario Header */
.scenario-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 25px 15px;
    background: rgba(255, 237, 78, 0.05);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scenario-title h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.scenario-title p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Solution Content */
.solution-content {
    padding: 25px;
    position: relative;
}

.solution-content::before {
    content: '';
    position: absolute;
    left: 25px;
    top: -1px;
    width: 40px;
    height: 2px;
    background: var(--green);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.solution-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.solution-header h4 {
    color: var(--green);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.solution-content p {
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    padding-left: 55px;
}

/* Why Matters Box */
.why-matters-whatsapp {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.05) 0%, 
        rgba(25, 180, 86, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* WhatsApp Green Border Effect */
.why-matters-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--green), 
        rgba(255, 237, 78, 0.3) 30%, 
        rgba(255, 237, 78, 0.3) 70%, 
        var(--green));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-matters-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green), #20b959);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.why-matters-whatsapp h4 {
    color: var(--green);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.why-matters-whatsapp p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    padding-left: 65px;
}

/* Support Features */
.support-features {
    max-width: 900px;
    margin: 0 auto;
}

.support-features h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.support-features h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-item {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 237, 78, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-icon {
    background: rgba(255, 237, 78, 0.1);
}

.feature-item:nth-child(3) .feature-icon {
    background: rgba(0, 136, 204, 0.1);
}

.feature-item:nth-child(4) .feature-icon {
    background: rgba(255, 68, 68, 0.1);
}

.feature-content h5 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.feature-content p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* WhatsApp Floating Animation */
@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.scenario-card:hover .scenario-icon {
    animation: whatsappFloat 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .whatsapp-support-container h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #section-mahadev-whatsapp-support {
        padding: 60px 0;
    }
    
    .whatsapp-support-container h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }
    
    .whatsapp-micro-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .story-examples-section h3 {
        font-size: 1.6rem;
    }
    
    .scenario-header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .scenario-icon {
        align-self: flex-start;
    }
    
    .solution-content {
        padding: 20px;
    }
    
    .solution-content p {
        padding-left: 0;
    }
    
    .why-matters-whatsapp {
        padding: 25px;
    }
    
    .why-matters-whatsapp p {
        padding-left: 0;
    }
    
    .why-matters-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .whatsapp-support-container h2 {
        font-size: 1.6rem;
    }
    
    .story-examples-section h3 {
        font-size: 1.4rem;
    }
    
    .scenario-header,
    .solution-content {
        padding: 15px;
    }
    
    .solution-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .support-features h4 {
        font-size: 1.3rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-support-container h2,
.whatsapp-micro-intro,
.story-examples-section,
.why-matters-whatsapp,
.support-features {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.whatsapp-micro-intro {
    animation-delay: 0.1s;
}

.story-examples-section {
    animation-delay: 0.2s;
}

.why-matters-whatsapp {
    animation-delay: 0.3s;
}

.support-features {
    animation-delay: 0.4s;
}

/* WhatsApp Chat Bubbles Decoration */
.chat-bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.chat-bubble:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: floatBubble 20s infinite linear;
}

.chat-bubble:nth-child(2) {
    bottom: 15%;
    right: 7%;
    animation: floatBubble 25s infinite linear reverse;
}

@keyframes floatBubble {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(0, -50px) rotate(180deg); }
    75% { transform: translate(-20px, -30px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* ==========================================================================
   MAHADEV ONLINE BOOK SECTION
   ========================================================================== */
#section-mahadev-online-book {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        var(--black-light) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
}

/* Network Pattern Background */
#section-mahadev-online-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 237, 78, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(255, 237, 78, 0.03) 0%, transparent 25%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 237, 78, 0.02) 1px,
            rgba(255, 237, 78, 0.02) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 237, 78, 0.02) 1px,
            rgba(255, 237, 78, 0.02) 2px
        );
    opacity: 0.4;
    z-index: 0;
}

/* Animated connection lines */
#section-mahadev-online-book::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--gold),
        var(--gold-dark),
        var(--gold),
        transparent
    );
    background-size: 200% 100%;
    animation: connectionFlow 4s linear infinite;
    opacity: 0.3;
    z-index: 0;
}

@keyframes connectionFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Container */
.online-book-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.online-book-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.online-book-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    border-radius: 2px;
}

/* Micro Intro */
.online-book-micro-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    color: var(--gray-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Animated network nodes in intro */
.online-book-micro-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 237, 78, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 237, 78, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 237, 78, 0.05) 2px, transparent 2px);
    background-size: 100px 100px;
    animation: networkPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Q&A Section */
.qa-section h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.qa-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

/* Q&A Grid */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

/* Q&A Item */
.qa-item {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.qa-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

/* Question Box */
.question-box {
    background: rgba(255, 237, 78, 0.08);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.question-box h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Answer Box */
.answer-box {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.answer-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.qa-item:nth-child(2) .answer-icon {
    background: rgba(0, 136, 204, 0.1);
}

.qa-item:nth-child(3) .answer-icon {
    background: rgba(255, 68, 68, 0.1);
}

.answer-box p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Features Highlight */
.features-highlight {
    margin-bottom: 3rem;
}

.features-highlight h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.features-highlight h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 237, 78, 0.1);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-content h5 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.highlight-content p {
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Why Matters Box */
.why-matters-online {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.why-matters-online::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-matters-content {
    position: relative;
    z-index: 2;
}

.why-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-matters-online h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.why-matters-online p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    padding-left: 65px;
}

/* Connection Nodes Decoration */
.connection-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.connection-node:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: nodePulse 2s ease-in-out infinite;
}

.connection-node:nth-child(2) {
    top: 25%;
    right: 15%;
    animation: nodePulse 2s ease-in-out infinite 0.5s;
}

.connection-node:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation: nodePulse 2s ease-in-out infinite 1s;
}

.connection-node:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation: nodePulse 2s ease-in-out infinite 1.5s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .online-book-container h2 {
        font-size: 2rem;
    }
    
    .qa-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #section-mahadev-online-book {
        padding: 60px 0;
    }
    
    .online-book-container h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }
    
    .online-book-micro-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .qa-section h3 {
        font-size: 1.6rem;
    }
    
    .question-box,
    .answer-box {
        padding: 15px;
    }
    
    .question-icon,
    .answer-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .question-box h4 {
        font-size: 1.1rem;
    }
    
    .answer-box p {
        font-size: 1rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .why-matters-online {
        padding: 25px;
    }
    
    .why-matters-online p {
        padding-left: 0;
    }
    
    .why-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .online-book-container h2 {
        font-size: 1.6rem;
    }
    
    .qa-section h3 {
        font-size: 1.4rem;
    }
    
    .features-highlight h4 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .connection-node {
        display: none;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.online-book-container h2,
.online-book-micro-intro,
.qa-section,
.features-highlight,
.why-matters-online {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.online-book-micro-intro {
    animation-delay: 0.1s;
}

.qa-section {
    animation-delay: 0.2s;
}

.features-highlight {
    animation-delay: 0.3s;
}

.why-matters-online {
    animation-delay: 0.4s;
}

/* Hover effect for Q&A items */
.qa-item:hover .question-icon {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* Connection line animation on hover */
.qa-item:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--gold),
        transparent
    );
    animation: connectionSlide 1s ease-out;
    z-index: 1;
}

@keyframes connectionSlide {
    0% { width: 0; opacity: 0; }
    50% { width: 100%; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

/* ==========================================================================
   MAHADEV BETTING APPS SECTION - MULTI-PLATFORM
   ========================================================================== */
#section-mahadev-betting-apps {
    background: linear-gradient(135deg, 
        var(--black-light) 0%, 
        #0a0a0a 50%, 
        var(--black-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

/* Multi-device Pattern Background */
#section-mahadev-betting-apps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 237, 78, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.02) 0%, transparent 20%),
        /* Mobile devices */
        url("data:image/svg+xml,%3Csvg width='40' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='30' height='50' rx='5' fill='none' stroke='%23FFED4E' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E"),
        /* Laptop device */
        url("data:image/svg+xml,%3Csvg width='60' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='5' y='5' width='50' height='30' rx='3' fill='none' stroke='%23FFED4E' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px 200px, 200px 200px, 40px 60px, 60px 40px;
    background-position: 
        10% 20%, 
        90% 80%,
        15% 25%,
        85% 75%;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Animated connection dots */
.connection-dots {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.connection-dots:nth-child(1) {
    top: 20%;
    left: 12%;
    animation: dotPulse 2s ease-in-out infinite;
}

.connection-dots:nth-child(2) {
    top: 30%;
    right: 10%;
    animation: dotPulse 2s ease-in-out infinite 0.5s;
}

.connection-dots:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation: dotPulse 2s ease-in-out infinite 1s;
}

.connection-dots:nth-child(4) {
    bottom: 35%;
    right: 12%;
    animation: dotPulse 2s ease-in-out infinite 1.5s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.5); opacity: 0.3; }
}

/* Container */
.betting-apps-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.betting-apps-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.betting-apps-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    border-radius: 2px;
}

/* Micro Intro */
.apps-micro-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    color: var(--gray-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Floating device animation */
.apps-micro-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 237, 78, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 237, 78, 0.03) 0%, transparent 50%);
    animation: floatDevices 20s linear infinite;
    z-index: -1;
}

@keyframes floatDevices {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Options Section */
.options-section h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.options-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

/* Scenario Box */
.scenario-box {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 237, 78, 0.1);
    position: relative;
}

.scenario-box p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 2.5rem;
}

/* Platform Option */
.platform-option {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.platform-option:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

/* Platform Header */
.platform-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
}

.platform-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.platform-option:first-child .platform-icon {
    background: rgba(37, 211, 102, 0.1);
}

.platform-option:last-child .platform-icon {
    background: rgba(0, 136, 204, 0.1);
}

.platform-header h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

/* Platform Features */
.platform-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.platform-features li {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.platform-features li:last-child {
    margin-bottom: 0;
}

.platform-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.platform-option:first-child .platform-features li::before {
    color: var(--green);
}

.platform-option:last-child .platform-features li::before {
    color: var(--blue);
}

/* Platform Tags */
.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
}

.platform-tag {
    background: rgba(255, 237, 78, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.platform-option:first-child .platform-tag {
    background: rgba(37, 211, 102, 0.1);
    color: var(--green);
}

.platform-option:last-child .platform-tag {
    background: rgba(0, 136, 204, 0.1);
    color: var(--blue);
}

/* Recommendation Box */
.recommendation-box {
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 237, 78, 0.15);
    position: relative;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.recommendation-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.recommendation-box h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.recommendation-box p {
    color: var(--gray-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    padding-left: 55px;
}

/* Why Matters Box */
.why-matters-platforms {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.why-matters-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-matters-content {
    position: relative;
    z-index: 2;
}

.why-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-matters-platforms h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.why-matters-platforms p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    padding-left: 65px;
}

/* Quick Highlights */
.quick-highlights {
    max-width: 900px;
    margin: 0 auto;
}

.quick-highlights h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.quick-highlights h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 237, 78, 0.1);
}

.highlight-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-item:nth-child(2) .highlight-icon {
    background: rgba(37, 211, 102, 0.1);
}

.highlight-item:nth-child(3) .highlight-icon {
    background: rgba(0, 136, 204, 0.1);
}

.highlight-item:nth-child(4) .highlight-icon {
    background: rgba(255, 68, 68, 0.1);
}

.highlight-text h5 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Platform Switching Animation */
@keyframes platformSwitch {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.platform-option:hover .platform-icon {
    animation: platformSwitch 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
    .betting-apps-container h2 {
        font-size: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #section-mahadev-betting-apps {
        padding: 60px 0;
    }
    
    .betting-apps-container h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }
    
    .apps-micro-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .options-section h3 {
        font-size: 1.6rem;
    }
    
    .platform-option {
        padding: 20px;
    }
    
    .platform-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .platform-icon {
        align-self: center;
    }
    
    .platform-features li {
        padding-left: 20px;
    }
    
    .recommendation-box p {
        padding-left: 0;
    }
    
    .recommendation-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .why-matters-platforms {
        padding: 25px;
    }
    
    .why-matters-platforms p {
        padding-left: 0;
    }
    
    .why-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .betting-apps-container h2 {
        font-size: 1.6rem;
    }
    
    .options-section h3 {
        font-size: 1.4rem;
    }
    
    .platform-header h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .platform-tags {
        justify-content: center;
    }
    
    .recommendation-box h4 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .quick-highlights h4 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .highlight-icon {
        align-self: center;
    }
    
    .connection-dots {
        display: none;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.betting-apps-container h2,
.apps-micro-intro,
.options-section,
.why-matters-platforms,
.quick-highlights {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.apps-micro-intro {
    animation-delay: 0.1s;
}

.options-section {
    animation-delay: 0.2s;
}

.why-matters-platforms {
    animation-delay: 0.3s;
}

.quick-highlights {
    animation-delay: 0.4s;
}

/* Device Syncing Animation */
.platform-option:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 237, 78, 0.05),
        transparent
    );
    animation: syncAnimation 2s linear infinite;
    z-index: -1;
}

@keyframes syncAnimation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* ==========================================================================
   MAHADEV ID SECTION - ONE ACCOUNT, ENDLESS ACCESS
   ========================================================================== */
#section-mahadev-id {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        var(--black-light) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 237, 78, 0.1);
}

/* Keyhole/ID Pattern Background */
#section-mahadev-id::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 237, 78, 0.03) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(255, 237, 78, 0.03) 0%, transparent 25%),
        /* Keyhole patterns */
        url("data:image/svg+xml,%3Csvg width='40' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='8' fill='none' stroke='%23FFED4E' stroke-opacity='0.05' stroke-width='1'/%3E%3Crect x='16' y='20' width='8' height='20' rx='4' fill='none' stroke='%23FFED4E' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30,10 A10,10 0 0,1 30,30 L30,30 A10,10 0 0,1 30,10' fill='none' stroke='%23FFED4E' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 200px 200px, 200px 200px, 40px 60px, 60px 40px;
    background-position: 
        10% 20%, 
        90% 80%,
        15% 25%,
        85% 75%;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

/* Animated key icons */
.key-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 8px;
    opacity: 0.2;
    z-index: 1;
    animation: keyFloat 3s ease-in-out infinite;
}

.key-icon:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.key-icon:nth-child(2) {
    top: 30%;
    right: 12%;
    animation-delay: 0.5s;
}

.key-icon:nth-child(3) {
    bottom: 25%;
    left: 10%;
    animation-delay: 1s;
}

.key-icon:nth-child(4) {
    bottom: 35%;
    right: 8%;
    animation-delay: 1.5s;
}

@keyframes keyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Container */
.mahadev-id-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.mahadev-id-container h2 {
    color: var(--gold);
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.mahadev-id-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold), 
        transparent);
    border-radius: 2px;
}

/* Micro Intro */
.id-micro-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 25px;
    background: rgba(255, 237, 78, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    color: var(--gray-light);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

/* Animated keyhole in intro */
.id-micro-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 237, 78, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: keyholePulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes keyholePulse {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

/* User Story Section */
.user-story-section h3 {
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.user-story-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

/* Scenario Card */
.scenario-card {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 237, 78, 0.15);
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.scenario-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

.scenario-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.scenario-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scenario-content h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.scenario-content p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Upgrades Section */
.upgrades-section h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.upgrades-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

.upgrades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.upgrade-item {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.upgrade-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 237, 78, 0.1);
}

.upgrade-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.upgrade-item:nth-child(2) .upgrade-icon {
    background: rgba(37, 211, 102, 0.1);
}

.upgrade-item:nth-child(3) .upgrade-icon {
    background: rgba(0, 136, 204, 0.1);
}

.upgrade-item:nth-child(4) .upgrade-icon {
    background: rgba(255, 68, 68, 0.1);
}

.upgrade-content h5 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.upgrade-content p {
    color: var(--gray-light);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Q&A ID Section */
.qa-id-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.qa-id-item {
    background: linear-gradient(145deg, 
        rgba(17, 17, 17, 0.9) 0%, 
        rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 237, 78, 0.15);
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.qa-id-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(255, 237, 78, 0.15);
}

.qa-id-question {
    background: rgba(255, 237, 78, 0.08);
    padding: 20px;
    border-bottom: 1px solid rgba(255, 237, 78, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-id-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.qa-id-question h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.qa-id-answer {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.answer-id-icon {
    width: 40px;
    height: 40px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.qa-id-answer p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* Why Matters Box */
.why-matters-id {
    background: linear-gradient(135deg, 
        rgba(255, 237, 78, 0.05) 0%, 
        rgba(255, 215, 0, 0.03) 100%);
    border-radius: 12px;
    padding: 30px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    max-width: 900px;
    margin: 0 auto 40px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Golden Border Effect */
.why-matters-id::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        var(--gold), 
        transparent 30%, 
        transparent 70%, 
        var(--gold-dark));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.why-matters-content {
    position: relative;
    z-index: 2;
}

.why-id-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.why-id-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 237, 78, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-matters-id h4 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.why-matters-id p {
    color: var(--gray-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
    padding-left: 65px;
}

/* ID Highlights */
.id-highlights {
    max-width: 900px;
    margin: 0 auto;
}

.id-highlights h4 {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.id-highlights h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 237, 78, 0.5);
}

.highlights-id-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-id-item {
    background: rgba(255, 237, 78, 0.03);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 237, 78, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-id-item:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(255, 237, 78, 0.1);
}

.highlight-id-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 237, 78, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-id-item:nth-child(2) .highlight-id-icon {
    background: rgba(37, 211, 102, 0.1);
}

.highlight-id-item:nth-child(3) .highlight-id-icon {
    background: rgba(0, 136, 204, 0.1);
}

.highlight-id-item:nth-child(4) .highlight-id-icon {
    background: rgba(255, 68, 68, 0.1);
}

.highlight-id-text h5 {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* ID Unlock Animation */
@keyframes idUnlock {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.1); }
    75% { transform: rotate(-5deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

.scenario-card:hover .scenario-icon {
    animation: idUnlock 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mahadev-id-container h2 {
        font-size: 2rem;
    }
    
    .qa-id-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .upgrades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-id-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #section-mahadev-id {
        padding: 60px 0;
    }
    
    .mahadev-id-container h2 {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }
    
    .id-micro-intro {
        padding: 20px;
        font-size: 1rem;
    }
    
    .user-story-section h3 {
        font-size: 1.6rem;
    }
    
    .scenario-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .scenario-icon {
        align-self: center;
    }
    
    .upgrades-grid {
        grid-template-columns: 1fr;
    }
    
    .upgrade-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .upgrade-icon {
        align-self: center;
    }
    
    .qa-id-question,
    .qa-id-answer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }
    
    .question-id-icon,
    .answer-id-icon {
        align-self: center;
    }
    
    .why-matters-id {
        padding: 25px;
    }
    
    .why-matters-id p {
        padding-left: 0;
    }
    
    .why-id-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .highlights-id-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mahadev-id-container h2 {
        font-size: 1.6rem;
    }
    
    .user-story-section h3 {
        font-size: 1.4rem;
    }
    
    .upgrades-section h4 {
        font-size: 1.3rem;
    }
    
    .qa-id-question h4 {
        font-size: 1.1rem;
    }
    
    .id-highlights h4 {
        font-size: 1.3rem;
    }
    
    .highlight-id-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .highlight-id-icon {
        align-self: center;
    }
    
    .key-icon {
        display: none;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mahadev-id-container h2,
.id-micro-intro,
.user-story-section,
.qa-id-section,
.why-matters-id,
.id-highlights {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.id-micro-intro {
    animation-delay: 0.1s;
}

.user-story-section {
    animation-delay: 0.2s;
}

.qa-id-section {
    animation-delay: 0.3s;
}

.why-matters-id {
    animation-delay: 0.4s;
}

.id-highlights {
    animation-delay: 0.5s;
}

/* ID Access Flow Animation */
.scenario-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--gold), 
        var(--green), 
        var(--blue), 
        var(--gold));
    background-size: 300% 100%;
    animation: idAccessFlow 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scenario-card:hover::after {
    opacity: 1;
}

@keyframes idAccessFlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

.home-video-cta {
  padding: 70px 0;
  background: #000000;
}

.home-video-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-cta-content h2 {
  font-size: 34px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
}

.video-cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #cfd3ff;
  margin-bottom: 28px;
  max-width: 520px;
}

.video-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.video-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 179, 0, 0.4);
}

.video-cta-thumb img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.video-cta-thumb img:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .home-video-cta .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .video-cta-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .video-cta-content h2 {
    font-size: 26px;
  }

  .video-cta-btn {
    width: 100%;
  }
}
