/* ===============
   HERO BANNER - Neon Casino
   =============== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #020617 0%, #1e1b4b 50%, #020617 100%);
}

/* Animated neon particles */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(236, 72, 153, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-bg-shift 12s ease-in-out infinite alternate;
}

@keyframes hero-bg-shift {
    0%   { opacity: 0.85; }
    100% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ec4899 30%, #06b6d4 60%, transparent 100%);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 0 60px rgba(6, 182, 212, 0.4);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #020617;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 0 4px rgba(236, 72, 153, 0.1);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(236, 72, 153, 0.6), 0 0 0 4px rgba(236, 72, 153, 0.1); }
    50%       { box-shadow: 0 0 30px rgba(236, 72, 153, 0.8), 0 0 0 8px rgba(236, 72, 153, 0.05); }
}

.hero-badge::before {
    content: '🎰';
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
    animation: hero-title-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-title-in {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-title span {
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    margin-bottom: 32px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-bonus-pill:hover {
    background: rgba(6, 182, 212, 0.18);
    border-color: rgba(6, 182, 212, 0.5);
}

.hero-bonus-pill .bonus-icon {
    font-size: 1.5rem;
}

.hero-bonus-pill .bonus-text {
    font-size: 1rem;
    font-weight: 600;
    color: #06b6d4;
}

.hero-bonus-pill .bonus-text strong {
    color: #ffffff;
    font-weight: 700;
}

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

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta-primary {
    background: var(--gradient-primary);
    color: #fff !important;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5), 0 0 0 4px rgba(236, 72, 153, 0.15);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.55s;
}

.hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.7), 0 0 0 4px rgba(236, 72, 153, 0.25);
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(6, 182, 212, 0.7);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.hero-cta-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

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

.hero-visual::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(168, 85, 247, 0.1) 40%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

/* Floating ring decoration */
.hero-visual::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    border: 2px dashed rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    animation: ring-spin 20s linear infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.12); opacity: 0.9; }
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

.hero-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.5), 0 0 0 2px rgba(236, 72, 153, 0.2);
    position: relative;
    z-index: 1;
    animation: float-logo 6s ease-in-out infinite;
}

/* ===============
   SECTION HEADERS - Neon Casino
   =============== */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    text-align: center;
    margin: 100px 0 52px;
    position: relative;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 18px auto 0;
    border-radius: var(--radius-xs);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

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

.game-card {
    background: var(--surface-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.game-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
    border-color: var(--primary-color);
}

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

/* Image wrapper for overlay */
.game-card a {
    display: block;
}

.game-card-img-wrap {
    position: relative;
    overflow: hidden;
}

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

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

/* Play overlay */
.game-card-img-wrap::after {
    content: '▶';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(236, 72, 153, 0.7);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
}

.game-card:hover .game-card-img-wrap::after {
    opacity: 1;
}

.game-card-content {
    padding: 24px;
    text-align: center;
}

.game-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.game-card:hover .game-card-content h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}

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

/* ===============
   LATEST NEWS SECTION - Neon
   =============== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    background: var(--surface-color);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

/* Image wrapper */
.news-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img {
    transform: scale(1.06);
}

/* Category tag overlay on image */
.news-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--accent-color);
    color: #020617;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: var(--radius-xs);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

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

.news-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-meta {
    font-size: 0.78rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.news-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-heading);
    transition: color var(--transition-fast);
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover h4 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

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

/* Read more arrow */
.news-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s ease;
}

.news-card:hover .news-card-read-more {
    gap: 8px;
}

/* ===============
   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;
    }

    .section-title {
        font-size: 1.7rem;
        margin: 40px 0 28px;
        letter-spacing: 1px;
    }

    .section-title::after {
        width: 60px;
        margin-left: auto;
    }

    .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;
    }

    .news-card-img {
        height: 200px;
    }

    .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(--accent-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-md);
    padding: 32px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    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: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 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, #020617 0%, #1e1b4b 100%);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-md);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.nidhhi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899 0%, #a855f7 50%, #06b6d4 100%);
}
.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: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}
.nidhhi-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-heading);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.nidhhi-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 24px;
    font-weight: 500;
}
.nidhhi-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 28px 0 12px;
}
.nidhhi-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    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-md);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
}

/* 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: var(--primary-color);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
}
.nidhhi-img-caption-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Pull quote */
.nidhhi-quote {
    position: relative;
    margin: 20px 0 24px;
    padding: 18px 24px 18px 28px;
    background: rgba(168, 85, 247, 0.1);
    border-left: 4px solid #a855f7;
    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: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
}
.nidhhi-quote cite {
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 700;
    color: #a855f7;
    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: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: background 0.2s, transform 0.2s;
}
.nidhhi-highlight-pill:hover {
    background: rgba(236, 72, 153, 0.2);
    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: var(--gradient-primary);
    color: #fff !important;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    transition: all var(--transition-speed);
}
.nidhhi-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

@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(236, 72, 153, 0.4);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}
.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, rgba(6, 182, 212, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}
.info-box-full:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
}
.info-box-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--accent-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: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.2);
}
.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 15px rgba(236, 72, 153, 0.5);
    font-weight: 700;
}
.promo-rules {
    padding: 0 20px 20px;
    color: #e0e7ff;
    font-size: 0.9rem;
}
.rule-title {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 600;
}
.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-md);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.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);
    border: 1px solid var(--border-color);
}
.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: var(--radius-md);
    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; }
}

/* ===============
   ABOUT PLATFORM – New Layout
   =============== */
.about-platform {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.about-platform-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    min-height: 500px;
}

.about-platform-image {
    position: relative;
    background: linear-gradient(135deg, #1e1b4b 0%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.about-platform-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
}

.about-platform-main-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.5);
    position: relative;
    z-index: 1;
    animation: float-logo 4s ease-in-out infinite;
}

.about-platform-badge-top,
.about-platform-badge-bottom {
    position: absolute;
    background: var(--gradient-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
    z-index: 2;
}

.about-platform-badge-top {
    top: 30px;
    left: 30px;
}

.about-platform-badge-bottom {
    bottom: 30px;
    right: 30px;
}

.about-platform-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    width: fit-content;
}

.about-platform-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.about-platform-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-platform-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.about-platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.about-platform-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: var(--radius-md);
}

.about-feature-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.about-platform-feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.about-platform-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.about-platform-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.about-platform-btn-primary,
.about-platform-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-platform-btn-primary {
    background: var(--gradient-primary);
    color: #fff !important;
    border: none;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.about-platform-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.6);
}

.about-platform-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid rgba(6, 182, 212, 0.4);
}

.about-platform-btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Responsive for new layout */
@media (max-width: 900px) {
    .about-platform-inner {
        grid-template-columns: 1fr;
    }

    .about-platform-image {
        padding: 40px 20px;
        min-height: 300px;
    }

    .about-platform-main-img {
        max-width: 220px;
    }

    .about-platform-content {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .about-platform-title {
        font-size: 1.7rem;
    }

    .about-platform-desc {
        font-size: 1rem;
    }

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

    .about-platform-actions {
        flex-direction: column;
    }

    .about-platform-btn-primary,
    .about-platform-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* ===============
   WHY CHOOSE – Improved Layout
   =============== */
.why-choose {
    margin: 80px 0;
    text-align: center;
}

.why-choose-header {
    margin-bottom: 50px;
}

.why-choose-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.why-choose-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.why-choose-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards grid — 3 col desktop, 2 col tablet, 1 col mobile */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    text-align: left;
}

.why-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px 28px 28px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 3px solid transparent;
}

/* Neon left border on hover */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.25);
    border-color: var(--border-color);
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.04) 0%, var(--surface-color) 60%);
}

/* Subtle top glow line */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Icon row */
.why-card-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.why-card:hover .why-card-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 0 14px rgba(236, 72, 153, 0.7));
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s ease;
}

.why-card:hover .why-card-title {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.4);
}

.why-card-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.why-choose-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.why-choose-btn,
.why-choose-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.why-choose-btn {
    background: var(--gradient-primary);
    color: #fff !important;
    border: none;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.why-choose-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.6);
}

.why-choose-btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid rgba(6, 182, 212, 0.4);
}

.why-choose-btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

/* Responsive for Why Choose section */
@media (max-width: 1024px) {
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose {
        margin: 50px 0;
    }

    .why-choose-title {
        font-size: 1.8rem;
    }

    .why-choose-desc {
        font-size: 1rem;
    }

    /* On mobile: horizontal layout — icon left, text right */
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 40px;
    }

    .why-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        padding: 20px 20px 20px 20px;
        border-left: 3px solid rgba(236, 72, 153, 0.3);
    }

    .why-card:hover {
        border-left-color: var(--primary-color);
        transform: none;
    }

    .why-card-icon {
        font-size: 2rem;
        margin-bottom: 0;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .why-card-body {
        flex: 1;
        min-width: 0;
    }

    .why-card-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .why-card-text {
        font-size: 0.88rem;
    }

    .why-choose-cta {
        flex-direction: column;
    }

    .why-choose-btn,
    .why-choose-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@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;
    }
    .info-card {
        padding: 16px 14px;
    }
    .info-title {
        font-size: 1.3rem;
    }
    .promo-title {
        font-size: 1.2rem;
    }
}

/* ===============
   PAYMENT SECTION
   =============== */
.payment-section {
    margin: 80px auto;
    text-align: center;
}

.payment-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.payment-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
    border-color: var(--primary-color);
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.payment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.payment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.payment-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

/* ===============
   HOW TO START - STEPS
   =============== */
.how-to-start {
    margin: 100px auto;
    text-align: center;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 60px 0 40px;
    position: relative;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

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

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--border-color), var(--primary-color), var(--border-color));
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: #fff !important;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.7);
}

/* ===============
   TRUST SECTION
   =============== */
.trust-section {
    margin: 100px auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===============
   FAQ SECTION
   =============== */
.faq-section {
    margin: 100px auto;
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-item:hover {
    border-color: var(--primary-color);
}

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

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }
    .step-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--border-color), var(--primary-color), var(--border-color));
    }
    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .payment-card {
        padding: 24px 20px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-item {
        padding: 24px 20px;
    }
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
    .btn-primary-large {
        padding: 16px 32px;
        font-size: 1rem;
    }
    .payment-section,
    .how-to-start,
    .trust-section,
    .faq-section {
        margin: 60px auto;
    }
}

/* ===============
   TESTIMONIALS SECTION
   =============== */
.testimonials-section {
    margin: 80px 0;
    text-align: center;
}

.testimonials-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(236, 72, 153, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.3);
    border-color: var(--primary-color);
}

.testimonial-avatar {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
}

/* ===============
   GAME CATEGORIES SECTION
   =============== */
.game-categories-section {
    margin: 80px 0;
    text-align: center;
}

.game-categories-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.game-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.game-category-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
    border-color: var(--accent-color);
}

.category-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.game-category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-category-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===============
   VIP SECTION
   =============== */
.vip-section {
    margin: 80px 0;
}

.vip-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
    overflow: hidden;
    position: relative;
}

.vip-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #a855f7, #06b6d4);
}

.vip-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.vip-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.vip-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.vip-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.vip-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: var(--radius-md);
}

.vip-benefit-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.vip-benefit h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.vip-benefit p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.vip-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff !important;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.vip-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.6);
}

.vip-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-crown {
    font-size: 8rem;
    animation: float-crown 4s ease-in-out infinite;
}

@keyframes float-crown {
    0%, 100% { transform: translateY(0px) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===============
   RESPONSIBLE GAMBLING SECTION
   =============== */
.responsible-gambling-section {
    margin: 80px 0;
}

.responsible-gambling-inner {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
}

.responsible-gambling-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.responsible-gambling-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.responsible-gambling-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
}

.responsible-gambling-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.responsible-tip {
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.responsible-tip h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.responsible-tip p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.responsible-gambling-age {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: var(--radius-md);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
}

.responsible-gambling-age p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .vip-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vip-visual {
        order: -1;
    }
    
    .vip-crown {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .game-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .vip-benefits {
        grid-template-columns: 1fr;
    }
    
    .vip-inner {
        padding: 32px 24px;
    }
    
    .vip-title {
        font-size: 1.8rem;
    }
    
    .responsible-gambling-inner {
        padding: 32px 24px;
    }
    
    .responsible-gambling-title {
        font-size: 1.5rem;
    }
    
    .responsible-gambling-tips {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section,
    .game-categories-section,
    .vip-section,
    .responsible-gambling-section {
        margin: 60px 0;
    }
}
