/* ===============
   GLOBAL INDEX CUSTOMIZATIONS
   =============== */

/* ===============
   HERO BANNER (Premium Dark Casino Backdrop)
   =============== */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: #05060b;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse 70% 70% at 80% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-content {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.05);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--secondary-color);
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* Accent words in title */
.hero-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    transition: all var(--transition-speed);
}

.hero-cta-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #047857 100%);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px var(--glow-color);
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--glow-color);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--secondary-color);
    border: 1.5px solid var(--border-color);
}

.hero-cta-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--hover-overlay);
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    z-index: 1;
    animation: pulseGlow 6s infinite alternate;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(16, 185, 129, 0.25));
    animation: floatVisual 5s ease-in-out infinite;
}

@keyframes floatVisual {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

/* ===============
   SECTION HEADERS
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    text-align: center;
    margin: 72px auto 40px;
    position: relative;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    display: block;
    width: fit-content;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 12px auto 0;
    border-radius: 99px;
}

/* ===============
   GAME FEATURE GRID
   =============== */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.game-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.game-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(16, 185, 129, 0.15);
}

.game-card:hover::before {
    opacity: 1;
}

.game-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-bottom: 1.5px solid var(--border-color);
}

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-img {
    transform: scale(1.08);
}

.game-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.game-card:hover .game-card-content h3 {
    color: var(--primary-color);
}

.game-card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============
   MARKETING CONTAINER (ABOUT PLATFORM / STATS GRID)
   =============== */
.marketing-container {
    display: flex;
    flex-direction: column;
    gap: 72px;
    margin: 80px auto;
}

/* About Platform */
.about-platform {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.about-hero-text {
    min-width: 0;
}

.about-badge {
    display: inline-flex;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 999px;
    margin-bottom: 20px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-heading-accent {
    color: var(--primary-color);
}

.about-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #047857 100%);
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px var(--glow-color);
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--glow-color);
}

/* Bonus Card style */
.bonus-card {
    background: linear-gradient(145deg, #121528 0%, #0a0b12 100%);
    border: 1.5px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.3));
}

.bonus-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.bonus-amount {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 8px;
}

.bonus-amount span {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 4px;
    text-transform: none;
}

.bonus-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-stat-card {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.stat-value--yes {
    color: var(--primary-color);
}

/* ===============
   BRAND AMBASSADOR SECTION (.nidhhi-card-container & .nidhhi-layout)
   =============== */
.nidhhi-card-container {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.nidhhi-card-container::before {
    content: '';
    position: absolute;
    bottom: -10%; right: -10%; width: 40%; height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.nidhhi-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: start;
}

/* Visuals Column */
.nidhhi-visual-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.nidhhi-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border-color);
}

.nidhhi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-speed) ease;
}

.nidhhi-image-wrapper:hover .nidhhi-img {
    transform: scale(1.05);
}

.nidhhi-image-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(5, 6, 11, 0.95) 0%, transparent 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nidhhi-overlay-badge {
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nidhhi-overlay-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
}

/* Quote Card (Lavender Glow Card) */
.nidhhi-quote-card {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: var(--radius-md);
    padding: 36px 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.quote-mark-top,
.quote-mark-bottom {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0;
    color: rgba(16, 185, 129, 0.15);
    position: absolute;
    user-select: none;
}

.quote-mark-top {
    top: 32px; left: 16px;
}

.quote-mark-bottom {
    bottom: 12px; right: 16px;
}

.quote-card-text {
    font-size: 1.02rem;
    font-style: italic;
    color: var(--secondary-color);
    line-height: 1.65;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.quote-card-author {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.quote-author-info {
    text-align: center;
}

.quote-author-name {
    display: block;
    font-family: var(--font-heading);
    font-weight: 850;
    font-size: 0.95rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-author-role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Content Column */
.nidhhi-content-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nidhhi-section-badge {
    display: inline-flex;
    width: fit-content;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-color);
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 999px;
}

.nidhhi-section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.25;
    text-transform: uppercase;
}

.nidhhi-section-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.nidhhi-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 999px;
}

.pill-icon {
    font-size: 0.95rem;
}

/* Article Grid */
.nidhhi-article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.nidhhi-article-item {
    background: rgba(255, 255, 255, 0.015);
    border-left: 3.5px solid var(--primary-color);
    padding: 16px 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.nidhhi-article-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 6px;
}

.nidhhi-article-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.nidhhi-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: linear-gradient(135deg, var(--primary-color) 0%, #047857 100%);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px var(--glow-color);
    transition: all var(--transition-speed);
}

.nidhhi-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px var(--glow-color);
}

/* ===============
   PROMO GRID BANNER
   =============== */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.promo-col {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color var(--transition-speed);
}

.promo-col:hover {
    border-color: rgba(16, 185, 129, 0.2);
}

.promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-rules {
    flex-grow: 1;
}

.rule-title {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-rules ol {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-rules li {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===============
   JILI / BONUS SECTION
   =============== */
.jili-section {
    margin: 80px 0;
}

.jili-section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0 auto 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    width: fit-content;
}

.jili-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 12px auto 0;
    border-radius: 99px;
}

.jili-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.jili-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 30px;
    align-items: center;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.jili-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.2);
}

.jili-gift-content,
.jili-deposit-content {
    flex: 1.2;
    min-width: 0;
}

.jili-gift-img,
.jili-deposit-img {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jili-gift-img img,
.jili-deposit-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)) drop-shadow(0 0 15px rgba(16, 185, 129, 0.15));
}

.jili-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.jili-lead {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.jili-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.jili-list li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.jili-list li::before {
    content: '✦';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-pill {
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 999px;
}

/* ===============
   MENGAPA MEMILIH / INFO CARD (.info-card)
   =============== */
.info-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    margin: 80px 0;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.info-title:first-of-type {
    margin-top: 0;
}

.info-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 10px;
    border-radius: 99px;
}

.info-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 24px 0 10px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.info-list li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--primary-color);
    font-weight: 900;
}

.info-list-numbered {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
    counter-reset: info-counter;
}

.info-list-numbered li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 36px;
    line-height: 1.6;
}

.info-list-numbered li::before {
    counter-increment: info-counter;
    content: counter(info-counter);
    position: absolute;
    left: 0; top: 2px;
    width: 24px; height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
}
.text-link:hover {
    text-decoration: underline;
}

/* ===============
   TESTIMONIALS SECTION
   =============== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.2);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===============
   FAQ ACCORDION (.faq-item)
   =============== */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 80px;
}

.faq-item {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-speed);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: var(--shadow-soft);
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 750;
    font-size: 1.1rem;
    color: var(--secondary-color);
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

/* ===============
   SAFETY & SECURITY SECTION
   =============== */
.safety-section {
    background: rgba(16, 185, 129, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 80px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.safety-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition-speed), border-color var(--transition-speed);
}

.safety-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-soft);
}

.safety-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.safety-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.safety-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ===============
   PAYMENT METHODS SECTION
   =============== */
.payment-section {
    padding: 80px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.payment-method {
    background: var(--surface-color);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-speed);
}

.payment-method:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.payment-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--secondary-color);
}

/* ===============
   MEDIA QUERY RESPONSIVENESS (INDEX-SPECIFIC)
   =============== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual img {
        max-width: 60%;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .nidhhi-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nidhhi-card-container {
        padding: 32px;
    }

    .nidhhi-image-wrapper {
        aspect-ratio: 16 / 9;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .jili-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .safety-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

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

    .section-title {
        font-size: 1.85rem;
        margin: 56px 0 28px;
    }

    .game-grid {
        gap: 20px;
        margin-bottom: 48px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        padding: 32px 24px;
        margin: 56px 0;
    }

    .safety-section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-cta {
        width: 100%;
        padding: 14px 24px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .jili-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .safety-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}