/* ============================================
   INDEX — Landing page (extends common.css)
   Violet crystal + soft magenta accents
   ============================================ */

:root {
    --gold: #f0abfc;
    --gold-soft: rgba(240, 171, 252, 0.15);
    --surface-elevated: rgba(22, 24, 23, 0.85);
    --ring-focus: 0 0 0 2px var(--bg-dark), 0 0 0 4px var(--primary-color);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.45);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(16, 185, 129, 0.2);
}

main {
    padding-top: 76px;
}

/* ── Shared index typography ── */
.section-prefix {
    font-family: 'Manrope', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}

.section-head .section-title {
    margin-bottom: 0;
    text-align: left;
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    letter-spacing: -0.02em;
}

.section-title--center {
    text-align: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.section-intro--center {
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.section-intro--center + .section-title--center,
.section-intro--center + h2.section-title--center {
    margin-top: 0.25rem;
}

.content-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(120deg, #fef3c7 0%, var(--gold) 35%, var(--secondary-color) 65%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ── Buttons ── */
.btn-primary,
.btn-ghost,
.btn-secondary {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.65rem;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-secondary:focus-visible {
    outline: none;
    box-shadow: var(--ring-focus);
}

.btn-primary {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-dark));
    color: #04120c;
    box-shadow: 0 4px 20px var(--primary-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-subtle);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: rgba(16, 185, 129, 0.45);
    color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.06);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.06);
}

.btn--sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding-bottom: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(16, 185, 129, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 80%, var(--gold-soft) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(220px, 280px);
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: stretch;
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.hero-sidebar {
    background: var(--surface-elevated);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: var(--shadow-card);
}

.sidebar-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fecaca;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.sidebar-tag i {
    font-size: 0.45rem;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.jackpot-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 700;
}

.jackpot-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 4vw, 2.15rem);
    line-height: 1.1;
    margin: 0.2rem 0;
}

.jackpot-sub {
    font-size: 0.78rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sidebar-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0.25rem 0;
}

.sidebar-last-win {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-subtle);
}

.slw-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.slw-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.slw-amount {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.ss-item {
    padding: 0.55rem 0.35rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

.ss-item strong {
    display: block;
    font-size: 0.8rem;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.ss-item span {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sidebar-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
}

.hero-main .badge {
    width: fit-content;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--gold-soft);
    border: 1px solid rgba(232, 197, 71, 0.25);
    color: #fde68a;
    margin-bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-main h1 {
    font-size: clamp(2.35rem, 6vw, 3.85rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: #fafafa;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.08rem);
    color: var(--text-light);
    max-width: 32rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.hc-card {
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-card);
}

.hc-card:hover {
    transform: translateX(-4px);
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: var(--shadow-card-hover);
}

.hc-card i {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.45rem;
    display: block;
}

.hc-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.hc-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
}

.hc-card--glow {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: 0 0 28px rgba(16, 185, 129, 0.12), var(--shadow-card);
}

.hc-card--accent {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(22, 24, 23, 0.95));
    border-color: rgba(16, 185, 129, 0.28);
}

/* Live wins ticker */
.live-wins-bar {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border-subtle);
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.live-wins-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(16, 185, 129, 0.08);
    border-right: 1px solid var(--border-subtle);
}

.wins-track-container {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.wins-track {
    display: flex;
    gap: 1rem;
    padding: 0.65rem 0;
    width: max-content;
    animation: wins-marquee 55s linear infinite;
}

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

.win-ticket {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    white-space: nowrap;
}

.win-user { font-weight: 700; color: var(--text-main); }
.win-amount { font-weight: 800; color: var(--secondary-color); }

/* ── Games ── */
.games-section {
    border-top: 1px solid var(--border-subtle);
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.35rem;
}

.game-card-angular {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-card);
}

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

.game-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.game-card-content {
    padding: 1.15rem 1.2rem 1.25rem;
}

.game-card-title {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
    color: #fff;
}

.game-card-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-card-play {
    display: flex;
    justify-content: flex-start;
}

.payment-strip {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1.25rem;
    padding: 1.1rem 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-subtle);
}

.ps-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.ps-item {
    font-size: 0.78rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.35);
}

.ps-item i {
    color: var(--primary-color);
}

/* ── Providers marquee ── */
.providers-strip {
    border-block: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.85rem 0;
    overflow: hidden;
}

.providers-track-container {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.providers-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: providers-marquee 40s linear infinite;
}

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

.provider-logo {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.provider-logo i {
    color: var(--primary-color);
    opacity: 0.85;
}

/* ── Ad banner block ── */
.ad-banner-section {
    margin: clamp(2.5rem, 5vw, 3.5rem) auto;
}

.ad-banner-section .ad-container {
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ad-banner-section img {
    width: 100%;
    height: auto;
    min-height: 100px;
    display: block;
    vertical-align: middle;
}

/* ── VIP ── */
.vip-tier-horizontal {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    margin-bottom: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vip-tier-horizontal:hover {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: var(--shadow-card);
}

.vip-tier-horizontal--featured {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow: inset 0 0 32px rgba(16, 185, 129, 0.06), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.vip-tier-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-subtle);
}

.vip-tier-icon .fa-chess-king {
    color: var(--gold);
}

.vip-tier-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.vip-tier-info h3 .vip-tier-sub {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
}

.vip-tier-info > p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.vip-badge-hot {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 6px;
    margin-bottom: 0.45rem;
}

.vip-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vip-perks li {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.vip-perks i {
    color: var(--primary-color);
    font-size: 0.7rem;
}

.vip-action .btn-primary,
.vip-action .btn-secondary {
    font-size: 0.85rem;
    padding: 0.75rem 1.35rem;
    white-space: nowrap;
}

/* ── Why choose ── */
.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.why-left .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.why-lead {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-light);
}

.why-list i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.why-choose-grid {
    display: grid;
    gap: 1.25rem;
}

.why-card {
    padding: 1.65rem;
    border-radius: 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.why-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.why-card-icon {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: block;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.why-card > p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.75;
    font-size: 0.9rem;
}

.why-card-list {
    color: var(--text-main);
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-card-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-card-list i {
    color: var(--primary-color);
    width: 1.25rem;
    text-align: center;
}

.why-card-icons {
    display: flex;
    gap: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.why-cta {
    margin-top: 2rem;
}

/* ── App (single column) ── */
.dual-layout {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.dual-block {
    padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-card);
}

.dual-block .section-prefix,
.dual-block .section-title {
    text-align: left;
}

.dual-block .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.dual-block > p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.8;
    font-size: 0.92rem;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-badge-item {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.app-badge-item i {
    color: var(--primary-color);
}

/* ── News ── */
.news-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.news-featured {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    box-shadow: var(--shadow-card);
}

.news-featured img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-featured-content {
    padding: 1.5rem;
}

.news-kicker {
    color: var(--primary-color);
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.65rem;
    display: block;
    letter-spacing: 0.12em;
}

.news-featured-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.news-featured-content h3 a {
    color: #fff;
    transition: color 0.2s ease;
}

.news-featured-content h3 a:hover {
    color: var(--secondary-color);
}

.news-featured-content > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.news-link-more {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 0.04em;
}

.news-link-more:hover {
    color: var(--secondary-color);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.news-list-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.04);
}

.news-list-item img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.news-content h3 {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.news-content h3 a {
    color: #fff;
}

.news-content h3 a:hover {
    color: var(--secondary-color);
}

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

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 2.5rem auto 0;
}

.faq-item {
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

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

.faq-question {
    padding: 1.1rem 1.25rem;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    user-select: none;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.15rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.faq-item.active {
    border-color: rgba(16, 185, 129, 0.35);
}

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

.faq-item.active .faq-answer {
    max-height: 32rem;
}

/* ── Features + SEO ── */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.feature-box {
    padding: 1.65rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.15rem;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #fff;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.seo-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2.25rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--border-subtle);
}

.seo-block h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #fff;
}

.seo-block p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.seo-block p:last-child {
    margin-bottom: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.testimonial-card {
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    border-radius: 16px;
    padding: 1.4rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.testimonial-card:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.85rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.testimonial-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.testimonial-user strong {
    color: #fff;
    font-size: 0.92rem;
}

.testimonial-user span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── Trust + Payments ── */
.trust-layout {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.2rem;
}

.trust-main,
.trust-side {
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    background: var(--surface-elevated);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.trust-main .section-title {
    text-align: left;
    margin-bottom: 0.9rem;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.trust-lead {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trust-list li {
    color: var(--text-main);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.trust-list i {
    color: var(--primary-color);
    margin-top: 0.15rem;
}

.trust-side h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.trust-pay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.1rem;
}

.trust-pay-grid span {
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-pay-grid i {
    color: var(--primary-color);
}

.trust-side .btn-primary {
    width: 100%;
}

/* ── Responsible ── */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.responsible-card {
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.35rem;
}

.responsible-card i {
    color: var(--primary-color);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.responsible-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
}

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

/* ── Footer CTA strip ── */
.footer-register-banner {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.18), rgba(16, 185, 129, 0.12));
    border-block: 1px solid var(--border-color);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    text-align: center;
}

.footer-register-banner h3 {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer-register-banner .btn-primary {
    padding: 1rem 2.75rem;
}

.footer-contact-icon {
    color: var(--primary-color);
    width: 1.25rem;
    margin-right: 0.35rem;
}

/* ── Footer logo ── */
.footer-brand img {
    max-height: 52px;
    margin-bottom: 1.15rem;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            'main main'
            'sidebar cards';
    }

    .hero-main { grid-area: main; text-align: center; align-items: center; }
    .hero-main .badge { margin-left: auto; margin-right: auto; }
    .hero-main h1 br { display: none; }
    .hero-main .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }

    .hero-sidebar { grid-area: sidebar; }
    .hero-cards {
        grid-area: cards;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-cards .hc-card { flex: 1 1 calc(50% - 0.5rem); min-width: 140px; }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .news-split-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .responsible-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-areas: 'main' 'sidebar' 'cards';
    }

    .hero-cards { flex-direction: column; }
    .hero-cards .hc-card { flex: none; }

    .live-wins-bar {
        flex-direction: column;
    }

    .live-wins-label {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        justify-content: center;
    }

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

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

    .vip-tier-horizontal {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vip-tier-icon {
        margin: 0 auto;
    }

    .vip-action {
        justify-self: center;
    }

    .news-list-item {
        grid-template-columns: 80px 1fr;
    }

    .testimonials-grid,
    .responsible-grid {
        grid-template-columns: 1fr;
    }

    .trust-pay-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wins-track,
    .providers-track {
        animation: none;
    }

    .sidebar-tag i {
        animation: none;
    }

    .btn-primary:hover,
    .btn-ghost:hover,
    .game-card-angular:hover,
    .hc-card:hover {
        transform: none;
    }
}
