/* ============================================================
   SHREE WIN – COMPLETE STYLESHEET
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --bg-primary: #07070E;
    --bg-secondary: #0E1020;
    --bg-card: #15182A;
    --gold: #F4B942;
    --gold-dark: #C98E2A;
    --purple: #7C3AED;
    --text-primary: #FFFFFF;
    --text-secondary: #B7BBCB;
    --text-muted: #858A9C;
    --border: rgba(255, 255, 255, 0.07);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    --container: 1180px;
}

/* ===== RESET & BASE ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-width: 320px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.25s;
}
a:hover {
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: auto;
}

/* ===== SKIP LINK (Accessibility) ===== */
.skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    z-index: 99999;
    background: var(--gold);
    color: #07070E;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
}
.skip-link:focus {
    top: 16px;
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: rgba(7, 7, 14, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.55rem;
    font-weight: 900;
}
.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #07070E;
    font-size: 0.95rem;
    overflow: hidden;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 9px;
    display: block;
}
.brand-name {
    color: var(--text-primary);
}
.brand-name span {
    color: var(--gold);
}

/* ===== NAVIGATION ===== */
.main-nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}
.main-nav a {
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 600;
    padding: 7px 0;
    border-bottom: 2px solid transparent;
    transition: 0.25s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--gold);
    border-color: var(--gold);
}
.nav-cta {
    background: var(--gold) !important;
    color: #07070E !important;
    padding: 9px 20px !important;
    border-radius: 40px !important;
    border: 0 !important;
}

/* ===== HAMBURGER (Mobile Toggle) ===== */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    position: relative;
    transition: 0.3s;
}
.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    bottom: -8px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 78px 0 90px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.16), transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-block;
    padding: 4px 18px;
    border-radius: 40px;
    background: rgba(244, 185, 66, 0.10);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2.7rem, 6vw, 5.1rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    font-weight: 900;
    margin-bottom: 22px;
}
.gold {
    color: var(--gold);
}
.gradient {
    background: linear-gradient(135deg, #ffffff, #aaaebe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    max-width: 650px;
    color: var(--text-secondary);
    font-size: 1.12rem;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 28px;
}
.hero-note span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #55d68b;
    margin-right: 7px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 60px;
    font-weight: 800;
    text-align: center;
    border: 0;
    transition: 0.25s;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-3px);
}
.btn-primary {
    background: var(--gold);
    color: #07070E;
    box-shadow: 0 6px 25px rgba(244, 185, 66, 0.28);
}
.btn-primary:hover {
    background: #fcc55a;
    box-shadow: 0 8px 30px rgba(244, 185, 66, 0.45);
}
.btn-secondary {
    background: var(--purple);
    color: #ffffff;
}
.btn-secondary:hover {
    background: #8b5cf6;
}
.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ===== GAME PANEL (Hero Visual) ===== */
.game-panel {
    background: var(--bg-card);
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.game-panel-inner {
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-secondary);
}
.panel-top {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.72rem;
}
.panel-dots {
    display: flex;
    gap: 5px;
}
.panel-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #555;
}
.panel-main {
    min-height: 320px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 30px 20px;
    background:
        radial-gradient(circle at 25% 25%, rgba(124, 58, 237, 0.16), transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(244, 185, 66, 0.10), transparent 30%),
        #0D0F19;
}
.panel-logo {
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #07070E;
    font-weight: 950;
    font-size: 1.55rem;
    overflow: hidden;
}
.panel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 24px;
    display: block;
}
.panel-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.panel-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.mini-card {
    padding: 13px 6px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
}
.mini-card strong {
    display: block;
    color: var(--gold);
}
.mini-card span {
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute;
    z-index: 5;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    background: rgba(13, 15, 25, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.floating-card.one {
    top: 90px;
    left: -38px;
}
.floating-card.two {
    right: -38px;
    bottom: 100px;
}
.floating-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.67rem;
    margin-bottom: 3px;
}
.floating-value {
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

/* ===== SECTIONS ===== */
.section {
    padding: 82px 0;
}
.section.alt {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}
.section-header {
    text-align: center;
    margin-bottom: 46px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.35rem);
    line-height: 1.2;
    margin-bottom: 15px;
}
.section-title span {
    color: var(--gold);
}
.section-description {
    max-width: 760px;
    margin: auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.018);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    padding: 18px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.trust-item:last-child {
    border-right: 0;
}
.trust-item strong {
    display: block;
}
.trust-item span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ===== CARDS GRID ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: 0.25s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(244, 185, 66, 0.10);
    color: var(--gold);
    margin-bottom: 18px;
    font-size: 1.25rem;
}
.card h3 {
    margin-bottom: 9px;
    font-size: 1.25rem;
}
.card p,
.card li {
    color: var(--text-secondary);
    font-size: 0.94rem;
}
.card ul {
    padding-left: 20px;
    margin-top: 12px;
}

/* ===== FEATURES, GAMES, PROMOS ===== */
.features-grid,
.games-grid,
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card,
.game-card,
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: 0.25s;
}
.feature-card:hover,
.game-card:hover,
.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}
.feature-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.25;
    display: block;
    margin-bottom: 4px;
}
.game-category,
.promo-tag {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.promo-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    background: var(--bg-secondary);
    border-radius: var(--radius) var(--radius) 0 0;
}
.promo-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a1d34, #262a48);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 20px;
    text-align: center;
}
.game-body .btn,
.promo-body .btn {
    width: 100%;
}

/* ===== ACCESS (Login / Register) ===== */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.access-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px;
}
.access-card.register {
    border-color: rgba(124, 58, 237, 0.25);
}
.access-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.access-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(244, 185, 66, 0.09);
    color: var(--gold);
    font-size: 1.25rem;
}
.register .access-icon {
    background: rgba(124, 58, 237, 0.12);
    color: #a990ff;
}
.access-card h3 {
    font-size: 1.5rem;
    margin: 0;
}
.access-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
}
.steps {
    list-style: none;
    margin: 25px 0;
}
.steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.steps li:last-child {
    border-bottom: 0;
}
.step-number {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #07070E;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
}
.register .step-number {
    background: var(--purple);
    color: #ffffff;
}
.access-card .btn {
    width: 100%;
}

/* ===== MOBILE (App Section) ===== */
.mobile-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.phone-wrap {
    position: relative;
    width: min(100%, 340px);
    margin: auto;
}
.phone {
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 40px;
    background: #151722;
    box-shadow: var(--shadow);
}
.phone-screen {
    min-height: 580px;
    padding: 25px 18px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.22), transparent 35%),
        #0b0d15;
}
.phone-notch {
    width: 110px;
    height: 22px;
    margin: -25px auto 30px;
    border-radius: 0 0 15px 15px;
    background: #151722;
}
.phone-brand {
    text-align: center;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 30px;
}
.phone-hero {
    padding: 28px 18px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(244, 185, 66, 0.10), rgba(124, 58, 237, 0.10));
    text-align: center;
}
.phone-hero strong {
    display: block;
    margin-bottom: 7px;
    font-size: 1.15rem;
}
.phone-hero span {
    color: var(--text-muted);
    font-size: 0.72rem;
}
.phone-list {
    display: grid;
    gap: 10px;
}
.phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}
.phone-item-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(244, 185, 66, 0.08);
    color: var(--gold);
    font-size: 0.8rem;
}
.phone-item strong {
    display: block;
    font-size: 0.76rem;
}
.phone-item span {
    color: var(--text-muted);
    font-size: 0.65rem;
}
.mobile-copy h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
.mobile-copy p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.mobile-points {
    list-style: none;
    display: grid;
    gap: 13px;
    margin-bottom: 30px;
}
.mobile-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}
.mobile-points li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(244, 185, 66, 0.10);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    flex-shrink: 0;
}

/* ===== APP IMAGES SECTION ===== */
.app-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 20px;
}
.app-images .app-img {
    flex: 1 1 280px;
    max-width: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: transform 0.3s;
}
.app-images .app-img:hover {
    transform: scale(1.02);
}
.app-images .app-img img {
    width: 100%;
    height: auto;
    display: block;
}
.app-description {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
}

/* ===== TRUST & SECURITY ===== */
.trust-security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trust-security-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: 0.25s;
}
.trust-security-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.trust-security-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}
.trust-security-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.trust-security-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* ===== AUTHOR STRIP ===== */
.author-strip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 28px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.author-strip .meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}
.author-strip .meta strong {
    color: var(--gold);
}
.author-strip .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.author-strip .badge {
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-gold {
    background: rgba(244, 185, 66, 0.10);
    color: var(--gold);
}
.badge-purple {
    background: rgba(124, 58, 237, 0.10);
    color: #a990ff;
}
.badge-green {
    background: rgba(85, 214, 139, 0.10);
    color: #55d68b;
}

/* ===== ARTICLE (Blog / Content Pages) ===== */
.article-shell {
    padding: 70px 0;
}
.article {
    max-width: 930px;
    margin: auto;
}
.article h1 {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
}
.article h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin: 52px 0 14px;
}
.article h3 {
    font-size: 1.35rem;
    margin: 30px 0 10px;
}
.article p {
    color: var(--text-secondary);
    margin: 0 0 18px;
}
.article ul,
.article ol {
    padding-left: 24px;
    color: var(--text-secondary);
    margin: 12px 0 22px;
}
.article li {
    margin: 7px 0;
}

/* ===== ANSWER BOX / NOTICE ===== */
.answer-box,
.notice {
    padding: 22px 24px;
    border: 1px solid rgba(244, 185, 66, 0.20);
    border-left: 4px solid var(--gold);
    border-radius: 14px;
    background: rgba(244, 185, 66, 0.045);
    margin: 25px 0;
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 16px;
    margin: 28px 0;
}
.toc ol {
    columns: 2;
}

/* ===== FAQ ===== */
.faq-list {
    display: grid;
    gap: 10px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 4px 22px;
    transition: 0.25s;
}
.faq-item:hover {
    border-color: var(--gold);
}
.faq-item summary {
    cursor: pointer;
    padding: 18px 0;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.5rem;
    transition: 0.25s;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-answer {
    padding: 0 0 20px;
    color: var(--text-secondary);
}

/* ===== RELATED LINKS ===== */
.related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.related a {
    display: block;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
}
.related a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 90px 0;
}
.cta-box {
    padding: 70px 30px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}
.cta-box h2 {
    font-size: clamp(2rem, 5vw, 3.3rem);
    margin-bottom: 14px;
}
.cta-box p {
    max-width: 680px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
}

/* ===== FOOTER ===== */
.site-footer {
    padding: 65px 0 30px;
    border-top: 1px solid var(--border);
    background: #07080e;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand p {
    max-width: 430px;
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 0.87rem;
}
.footer-title {
    font-weight: 800;
    margin-bottom: 13px;
}
.footer-links {
    list-style: none;
    display: grid;
    gap: 8px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.84rem;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
    display: none;
}

/* ===== CONTENT NOTE ===== */
.content-note {
    font-size: 0.86rem;
    color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE – TABLETS (max-width: 900px)
   ============================================================ */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(7, 7, 14, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
    }
    .main-nav.is-open {
        display: block;
    }
    .main-nav ul {
        display: grid;
        gap: 0;
        padding: 10px 20px;
    }
    .main-nav a {
        display: block;
        padding: 14px;
        text-align: center;
        border: 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-copy {
        text-align: center;
    }
    .hero-text {
        margin-inline: auto;
    }
    .hero-actions,
    .hero-note {
        justify-content: center;
    }
    .cards {
        grid-template-columns: 1fr 1fr;
    }
    .features-grid,
    .games-grid,
    .promo-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-security-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .access-grid {
        grid-template-columns: 1fr;
    }
    .mobile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .mobile-copy {
        text-align: center;
    }
    .mobile-points {
        text-align: left;
    }
    .author-strip {
        flex-direction: column;
        text-align: center;
    }
    .related {
        grid-template-columns: 1fr 1fr;
    }
    .app-images .app-img {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (max-width: 650px)
   ============================================================ */
@media (max-width: 650px) {
    .section {
        padding: 65px 0;
    }
    .hero {
        padding: 55px 0 65px;
    }
    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .features-grid,
    .games-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .trust-security-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-item:nth-child(2) {
        border-right: 0;
    }
    .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .toc ol {
        columns: 1;
    }
    .related {
        grid-template-columns: 1fr;
    }
    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: rgba(7, 7, 14, 0.97);
        padding: 10px;
        gap: 8px;
        border-top: 1px solid var(--border);
    }
    .mobile-cta a {
        flex: 1;
        text-align: center;
    }
    .site-footer {
        padding-bottom: 80px;
    }
    .floating-card.one {
        left: -8px;
        top: 70px;
    }
    .floating-card.two {
        right: -8px;
        bottom: 65px;
    }
    .app-images .app-img {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ============================================================
   REDUCED MOTION – Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}