/* ============================================
   INDEX — Landing page (extends common.css)
   Neon Red + Cyber Blue theme
   ============================================ */

:root {
    --gold: #ffd700;
    --gold-soft: rgba(255, 215, 0, 0.12);
    --surface-elevated: rgba(17, 17, 26, 0.9);
    --ring-focus: 0 0 0 2px var(--bg-dark), 0 0 0 4px var(--primary-color);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-card-hover: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 0, 64, 0.25);
}

main {
    padding-top: 80px;
}

/* ── Shared index typography ── */
.section-prefix {
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

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

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

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

.content-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    position: relative;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 50%, var(--secondary-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: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 25px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-glow);
}

.btn-ghost {
    background: transparent;
    border-color: var(--border-subtle);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: rgba(0, 229, 255, 0.05);
}

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

.btn-secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(255, 215, 0, 0.05);
}

.btn--sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
}

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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 80% 15%, rgba(255, 0, 64, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 20% 85%, rgba(0, 229, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 94%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-main .badge {
    width: fit-content;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-main h1 {
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: #fafafa;
}

.hero-desc {
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    color: var(--text-light);
    max-width: 30rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

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

.hero-sidebar {
    background: var(--surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold), var(--secondary-color));
}

.jackpot-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase;
}

.jackpot-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.1;
    margin: 0.5rem 0;
    color: var(--accent-color);
}

.jackpot-sub {
    font-size: 0.8rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.ss-item {
    padding: 1rem 0.5rem;
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.ss-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.ss-item span {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live wins ticker */
.live-wins-bar {
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.6);
}

.live-wins-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(255, 0, 64, 0.08);
    border-right: 1px solid var(--border-subtle);
}

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

.wins-track {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    width: max-content;
    animation: wins-marquee 45s 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.5rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    white-space: nowrap;
}

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

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

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

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

.game-card-angular:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
}

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

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

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

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

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

.payment-strip {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 1px dashed var(--border-subtle);
}

.ps-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ps-item {
    font-size: 0.8rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--border-subtle);
}

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

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

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

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

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

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

.provider-logo i {
    color: var(--primary-color);
    font-size: 1rem;
}

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

/* ── VIP ── */
.vip-tiers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.vip-tier-horizontal {
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

.vip-tier-horizontal:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.vip-tier-horizontal--featured {
    border-color: var(--accent-color);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1), rgba(17, 17, 26, 0.95));
}

.vip-tier-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-subtle);
}

.vip-tier-horizontal--featured .vip-tier-icon {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

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

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

.vip-tier-info h3 .vip-tier-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    text-transform: none;
}

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

.vip-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1rem;
}

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

.vip-perks i {
    color: var(--secondary-color);
}

.vip-action {
    margin-top: 1.25rem;
}

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

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

.why-lead {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

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

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

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

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

.why-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-3px);
}

.why-card-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
}

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

.why-card > p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.85rem;
}

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

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

.why-card-list i {
    color: var(--secondary-color);
}

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

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

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

.dual-block {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border: 1px solid var(--border-subtle);
    background: var(--surface-elevated);
    text-align: center;
}

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

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

.dual-block > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.88rem;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

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

.app-badge-item {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border-subtle);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

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

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

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

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

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

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

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

.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.85rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.news-link-more {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.72rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    letter-spacing: 1px;
}

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

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

.news-list-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    padding: 1rem;
    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(255, 0, 64, 0.25);
    background: rgba(255, 0, 64, 0.03);
}

.news-list-item img {
    width: 100%;
    height: 75px;
    object-fit: cover;
}

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

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

.news-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
    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: 2rem auto 0;
}

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

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    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(--secondary-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 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.faq-item.active {
    border-color: rgba(0, 229, 255, 0.35);
}

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

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

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

.feature-box {
    padding: 1.5rem;
    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(255, 215, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-color);
}

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

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

.seo-block {
    max-width: 850px;
    margin: 0 auto;
    padding: 1.75rem 2rem;
    border: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.4);
}

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

.seo-block p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

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

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

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

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

.testimonial-rating {
    color: var(--accent-color);
    font-size: 0.8rem;
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

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

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

.testimonial-user strong {
    color: #fff;
    font-size: 0.88rem;
    font-family: 'Orbitron', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

.trust-pay-grid i {
    color: var(--secondary-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);
    background: rgba(255, 255, 255, 0.02);
    padding: 1.35rem;
}

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

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

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

/* ── Footer CTA strip ── */
.footer-register-banner {
    background: linear-gradient(135deg, rgba(255, 0, 64, 0.15), rgba(0, 229, 255, 0.1), rgba(255, 215, 0, 0.12));
    border-block: 1px solid var(--border-color);
    padding: clamp(2rem, 5vw, 3rem) 0;
    text-align: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .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;
    }

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

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