/* ===============
   HERO BANNER
   =============== */
.hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse 80% 70% at 100% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    min-width: 0;
}

.hero-badge {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 999px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 999px;
    transition: all var(--transition-speed);
}

.hero-cta-primary {
    background: var(--primary-color);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.hero-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

.hero-cta-secondary {
    background: var(--surface-color);
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
}

.hero-cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--hover-overlay);
}

.hero-visual {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-speed) ease;
}

.hero-visual-img:hover {
    transform: scale(1.02);
}

/* ===============
   SECTION HEADERS
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-align: left;
    margin: 56px 0 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-shadow: none;
}

.section-title::after {
    content: '';
    display: inline-block;
    width: 64px;
    height: 5px;
    background: var(--primary-color);
    margin: 0 0 8px 16px;
    border-radius: 3px;
    box-shadow: none;
}

/* ===============
   GAME FEATURE GRID
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.game-card {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: transparent;
    z-index: 0;
}

.game-card > a {
    position: relative;
    z-index: 1;
    display: block;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
    border-color: rgba(37, 99, 235, 0.4);
}

.game-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.game-card-content {
    padding: 25px 20px;
    text-align: center;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    text-shadow: none;
    font-weight: 700;
}

.game-card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
}

/* ===============
   LATEST NEWS SECTION
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-speed);
}

.news-card:hover {
    background: #f9fafb;
    border-color: rgba(37, 99, 235, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #e5e7eb;
    transition: color var(--transition-speed);
    font-weight: 700;
}

.news-card:hover h4 {
    color: var(--primary-color);
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============
   RESPONSIVE (index)
   =============== */
@media (max-width: 768px) {
    .hero {
        padding: 84px 0 56px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-visual {
        display: none; /* hide logo duplicate on mobile */
    }

    .section-title {
        font-size: 1.7rem;
        margin: 40px 0 28px;
        letter-spacing: 1px;
    }

    .section-title::after {
        width: 40px;
        margin-left: 10px;
    }

    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
        gap: 16px;
        margin-bottom: 40px;
    }

    .game-card-img {
        height: 160px;
    }

    .game-card-content {
        padding: 16px 14px;
    }

    .game-card-content h3 {
        font-size: 1.1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .marketing-container {
        margin: 40px auto;
        padding: 0 16px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 72px 0 44px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.45rem;
        margin: 32px 0 20px;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .game-card-img {
        height: 130px;
    }
}

/* ===============
   CUSTOM MARKETING SECTIONS
   =============== */
.cyan-text {
    color: var(--primary-color);
}

.marketing-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: var(--font-body);
}

.info-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
}

/* Informações sobre o {站点核心词} – intro block */
.info-card-about .info-intro {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}
.info-card-about .info-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--secondary-color);
}
.info-lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
    max-width: 720px;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 24px 0 16px;
    text-shadow: none;
}
.info-card .info-title:first-child {
    margin-top: 0;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 25px 0 10px;
}

.info-card p, .info-list, .info-list-numbered {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-list {
    list-style: disc;
    padding-left: 20px;
}
.info-list-numbered {
    list-style: decimal;
    padding-left: 20px;
}

.info-list li, .info-list-numbered li {
    margin-bottom: 10px;
}

.text-link {
    color: #ff007f;
    text-decoration: underline;
}

/* Nidhhi Ambassador Section – distinct color & layout */
.nidhhi-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    padding: 48px 40px;
    background: linear-gradient(135deg, #fef7ed 0%, #fff7ed 50%, #fef3e8 100%);
    border: 1px solid #fed7aa;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(251, 146, 60, 0.12);
}
.nidhhi-content {
    min-width: 0;
}
.nidhhi-badge {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c2410c;
    background: #ffedd5;
    border-radius: 999px;
}
.nidhhi-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: #9a3412;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.nidhhi-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #431407;
    margin-bottom: 24px;
    font-weight: 500;
}
.nidhhi-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #c2410c;
    margin: 28px 0 12px;
}
.nidhhi-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #431407;
    margin-bottom: 16px;
}
.nidhhi-text:last-of-type {
    margin-bottom: 0;
}
.nidhhi-image {
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.nidhhi-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 56px rgba(194, 65, 12, 0.2);
    border: 1px solid #fed7aa;
}

/* Image caption */
.nidhhi-img-caption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}
.nidhhi-img-caption-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #9a3412;
}
.nidhhi-img-caption-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: #c2410c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Pull quote */
.nidhhi-quote {
    position: relative;
    margin: 20px 0 24px;
    padding: 18px 24px 18px 28px;
    background: rgba(251, 146, 60, 0.08);
    border-left: 4px solid #fb923c;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.nidhhi-quote p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    color: #7c2d12;
    margin-bottom: 8px;
    font-weight: 500;
}
.nidhhi-quote cite {
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
    color: #c2410c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Highlight pills row */
.nidhhi-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.nidhhi-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: #ffedd5;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #9a3412;
    transition: background 0.2s, transform 0.2s;
}
.nidhhi-highlight-pill:hover {
    background: #fed7aa;
    transform: translateY(-1px);
}

/* CTA button inside nidhhi card */
.nidhhi-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #fff !important;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(194, 65, 12, 0.35);
    transition: all var(--transition-speed);
}
.nidhhi-cta:hover {
    background: linear-gradient(135deg, #c2410c 0%, #9a3412 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(194, 65, 12, 0.45);
}

@media (max-width: 900px) {
    .nidhhi-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }
    .nidhhi-image img {
        max-width: 100%;
    }
}

/* Info Grid Boxes */
.info-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 0;
}
.info-box {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.info-box:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.info-box strong,
.info-box .cyan-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.info-box-full {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: rgba(37, 99, 235, 0.25);
}
.info-box-full:hover {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}
.info-box-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary-color);
    flex-shrink: 0;
}
.info-box p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
}
.info-box-full p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.promo-col {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.promo-col-reverse {
    display: flex;
    flex-direction: column;
}
.promo-col-reverse .promo-img {
    order: 2;
}
.promo-col-reverse h3, .promo-col-reverse .promo-rules {
    order: 1;
}
.promo-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.promo-title {
    color: var(--primary-color);
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 0 12px rgba(56,189,248,0.7);
}
.promo-rules {
    padding: 0 20px 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
}
.rule-title {
    color: #22c55e;
    margin-bottom: 5px;
}
.promo-rules ol {
    padding-left: 20px;
}

/* Jili Section – BONUS PLUS + Depósito Fácil */
.jili-section {
    margin-bottom: 56px;
}
.jili-section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}
.jili-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.jili-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.jili-gift-section {
    grid-template-columns: 1.1fr 0.9fr;
}
.jili-deposit-section {
    grid-template-columns: 0.9fr 1.1fr;
}
.jili-gift-content,
.jili-deposit-content {
    min-width: 0;
}
.jili-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.jili-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.jili-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.jili-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--secondary-color);
}
.jili-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}
.jili-gift-img,
.jili-deposit-img {
    min-width: 0;
    text-align: center;
}
.jili-gift-img img,
.jili-deposit-img img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: var(--radius-md);
}
.jili-deposit-section .jili-deposit-img img {
    max-width: 260px;
}
.payment-methods {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.payment-pill {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}
@media (max-width: 768px) {
    .jili-card {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 20px;
    }
    .jili-gift-section {
        grid-template-columns: 1fr;
    }
    .jili-deposit-section {
        grid-template-columns: 1fr;
    }
    .jili-deposit-section .jili-deposit-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .info-card { padding: 20px; }
}

/* ===============
   DARK THEME OVERRIDES (index)
   =============== */
html[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
}
html[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse 80% 70% at 100% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 55%);
}
html[data-theme="dark"] .hero-cta-primary {
    box-shadow: 0 4px 14px rgba(96, 165, 250, 0.35);
}
html[data-theme="dark"] .hero-cta-primary:hover {
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.45);
}
html[data-theme="dark"] .news-card:hover {
    background: #334155;
}
html[data-theme="dark"] .nidhhi-card {
    background: linear-gradient(135deg, #1e293b 0%, #172554 50%, #1e293b 100%);
    border-color: #475569;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
html[data-theme="dark"] .nidhhi-badge {
    color: #fdba74;
    background: rgba(251, 146, 60, 0.2);
    border-color: #fb923c;
}
html[data-theme="dark"] .nidhhi-title {
    color: #fed7aa;
}
html[data-theme="dark"] .nidhhi-lead,
html[data-theme="dark"] .nidhhi-text {
    color: #e2e8f0;
}
html[data-theme="dark"] .nidhhi-subtitle {
    color: #fdba74;
}
html[data-theme="dark"] .nidhhi-image img {
    border-color: #475569;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .nidhhi-img-caption-name {
    color: #fed7aa;
}
html[data-theme="dark"] .nidhhi-img-caption-role {
    color: #fdba74;
}
html[data-theme="dark"] .nidhhi-quote {
    background: rgba(251, 146, 60, 0.07);
    border-left-color: #fb923c;
}
html[data-theme="dark"] .nidhhi-quote p {
    color: #fed7aa;
}
html[data-theme="dark"] .nidhhi-quote cite {
    color: #fdba74;
}
html[data-theme="dark"] .nidhhi-highlight-pill {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: #fdba74;
}
html[data-theme="dark"] .nidhhi-highlight-pill:hover {
    background: rgba(251, 146, 60, 0.25);
}
html[data-theme="dark"] .info-box-full {
    background: linear-gradient(135deg, #1e3a5f 0%, #1e293b 100%);
    border-color: rgba(96, 165, 250, 0.3);
}
html[data-theme="dark"] .hero-visual-inner {
    background: linear-gradient(145deg, rgba(96, 165, 250, 0.15) 0%, rgba(74, 222, 128, 0.1) 100%);
    border-color: rgba(96, 165, 250, 0.25);
}

/* ===============
   ABOUT PLATFORM – Redesigned Info Section
   =============== */
.about-platform {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}
.about-platform::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #7c3aed 50%, #16a34a 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Two-column hero inside the card */
.about-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}

.about-badge {
    display: inline-block;
    padding: 5px 14px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 999px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.about-heading-accent {
    color: var(--primary-color);
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 26px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    transition: all var(--transition-speed);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.about-cta:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}

/* Bonus card (right column) */
.about-hero-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bonus-card {
    text-align: center;
    padding: 28px 24px;
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    width: 100%;
    max-width: 260px;
}
.bonus-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 12px;
}
.bonus-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.bonus-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.15;
    margin-bottom: 10px;
}
.bonus-amount span {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}
.bonus-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Stats grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.about-stat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 20px;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.about-stat-card:hover {
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.07);
    transform: translateY(-2px);
}
.stat-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
}
.stat-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.35;
}
.stat-value--yes {
    color: var(--accent-color);
}

/* Dark theme overrides */
html[data-theme="dark"] .about-platform {
    background: var(--surface-color);
}
html[data-theme="dark"] .bonus-card {
    background: linear-gradient(145deg, #1e3a5f 0%, #1e293b 100%);
    border-color: rgba(96, 165, 250, 0.3);
}
html[data-theme="dark"] .bonus-amount {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-hero-bonus {
        justify-content: flex-start;
    }
    .bonus-card {
        max-width: 100%;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
    }
    .bonus-icon { margin-bottom: 0; }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .about-platform {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }
    .about-heading {
        font-size: 1.65rem;
    }
    .about-lead {
        font-size: 0.97rem;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .about-stat-card {
        padding: 14px 14px;
    }
    .nidhhi-card {
        padding: 24px 18px;
        gap: 24px;
        border-radius: var(--radius-md);
    }
    .nidhhi-title {
        font-size: 1.45rem;
    }
    .jili-section-title {
        font-size: 1.4rem;
    }
    .info-card {
        padding: 20px 18px;
        border-radius: var(--radius-md);
    }
    .info-title {
        font-size: 1.5rem;
    }
    .info-subtitle {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .about-platform {
        padding: 20px 14px;
    }
    .about-heading {
        font-size: 1.4rem;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .about-stat-card {
        padding: 12px 12px;
    }
    .stat-value {
        font-size: 0.85rem;
    }
    .nidhhi-card {
        padding: 18px 14px;
    }
    .nidhhi-title {
        font-size: 1.25rem;
    }
    .bonus-amount {
        font-size: 1.6rem;
    }
    .info-card {
        padding: 16px 14px;
    }
    .info-title {
        font-size: 1.3rem;
    }
    .promo-title {
        font-size: 1.2rem;
    }
}