/* ══════════════════════════════════════════════
   BRAZINO777 MX — styles.css
   Brand: Purple #6B2D8B + Gold #FFD700 + Dark #0D0D1A
   ══════════════════════════════════════════════ */
:root {
    --purple: #6B2D8B;
    --purple-dark: #4A1E61;
    --purple-light: #8B3DAB;
    --gold: #FFD700;
    --gold-dark: #E6C200;
    --gold-light: #FFE44D;
    --navy: #0D0D1A;
    --navy-2: #121225;
    --navy-3: #1A1A35;
    --navy-4: #22224A;
    --white: #FFFFFF;
    --text: #E8E8F0;
    --gray-2: #B0B0C8;
    --gray-3: #707090;
    --border: rgba(107, 45, 139, 0.3);
    --glass: rgba(107, 45, 139, 0.12);
    --glass-2: rgba(107, 45, 139, 0.2);
    --red: #E4002B;
    --green: #00C853;
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.22s ease;
    --shadow: 0 8px 32px rgba(107, 45, 139, 0.25);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--navy);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: .875rem;
    text-decoration: none;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-2);
}

::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 3px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h4 {
    font-size: 1.05rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text);
}

a {
    color: var(--gold);
    text-decoration: none;
}

a:hover {
    color: var(--gold-light);
}

code {
    background: rgba(107, 45, 139, .2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: .875em;
    color: var(--gold);
}

/* ── CONTAINER ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0D0D1A;
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, .4);
    color: #0D0D1A;
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: var(--white);
    border-color: var(--purple);
}

.btn-purple:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 45, 139, .4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 9px 20px;
    font-size: .85rem;
}

.btn-apk {
    background: linear-gradient(135deg, #00C853, #009624);
    color: #fff;
    border-color: #00C853;
}

.btn-apk:hover {
    background: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 83, .4);
    color: #fff;
}

/* ── BADGES ── */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 700;
}

.badge-green {
    background: rgba(0, 200, 83, .15);
    color: #00C853;
}

.badge-gold {
    background: rgba(255, 215, 0, .15);
    color: var(--gold);
}

.badge-purple {
    background: rgba(107, 45, 139, .25);
    color: #C87DFF;
}

.badge-red {
    background: rgba(228, 0, 43, .15);
    color: #FF4D6D;
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #FF4D4D;
    border-radius: 50%;
    animation: pulse 1.4s infinite;
    margin-right: 6px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 26, .93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 13, 26, .99);
    box-shadow: 0 4px 24px rgba(107, 45, 139, .3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 20px;
    max-width: 1240px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-link img {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, .3));
}

/* MAIN NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    position: relative;
    padding: 8px 15px;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--white);
    font-weight: 600;
}

.main-nav a.live-tag {
    color: var(--gold);
    font-weight: 600;
}

.main-nav a.live-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 1.4s infinite;
    vertical-align: middle;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.hamburger:hover {
    background: var(--glass-2);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, .98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    animation: slideDown .2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 2px;
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    text-decoration: none;
    transition: all var(--transition);
}

.mobile-nav a:hover {
    color: var(--white);
    background: var(--glass);
}

.mobile-nav-cta {
    display: block !important;
    margin-top: 12px !important;
    padding: 14px 16px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: #0D0D1A !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-align: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    transition: opacity .5s;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(107, 45, 139, .7) 0%, rgba(13, 13, 26, .95) 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 215, 0, .12);
    border: 1px solid rgba(255, 215, 0, .3);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray-2);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    font-family: 'Barlow Condensed', sans-serif;
}

.stat-label {
    font-size: .75rem;
    color: var(--gray-3);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
}

/* PAGE HERO (inner pages) */
.page-hero {
    padding: 130px 0 60px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--purple-dark) 0%, var(--navy) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .2;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--gray-3);
    margin-bottom: 20px;
    justify-content: center;
}

.breadcrumb a {
    color: var(--gray-2);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb-sep {
    color: var(--gray-3);
}

/* ── SECTIONS ── */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-2);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

/* GLASS CARD */
.glass-card {
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.glass-card:hover {
    border-color: rgba(107, 45, 139, .6);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

/* GRID LAYOUTS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* STATS BAR */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-box {
    background: var(--navy-2);
    padding: 28px 20px;
    text-align: center;
}

.stat-box .num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1;
}

.stat-box .lbl {
    font-size: .78rem;
    color: var(--gray-3);
    text-transform: uppercase;
    margin-top: 6px;
    letter-spacing: .05em;
}

/* BONUS CARDS */
.bonus-card {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--purple));
}

.bonus-card:hover {
    border-color: rgba(255, 215, 0, .3);
    transform: translateY(-4px);
}

.bonus-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin: 8px 0;
}

.bonus-pct {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-light);
}

/* DATA TABLES */
.data-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.data-table caption {
    caption-side: bottom;
    font-size: .75rem;
    color: var(--gray-3);
    padding: 12px;
    text-align: center;
}

.data-table thead tr {
    background: linear-gradient(135deg, var(--purple-dark), var(--navy-3));
}

.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    color: var(--gold);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.data-table td {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(107, 45, 139, .12);
    color: var(--text);
}

.data-table tbody tr:hover {
    background: var(--glass);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* CHART */
.chart-wrap {
    padding: 28px;
    background: var(--navy-3);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.chart-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    width: 140px;
    font-size: .82rem;
    color: var(--gray-2);
    flex-shrink: 0;
    text-align: right;
}

.bar-track {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    height: 28px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding-right: 10px;
    justify-content: flex-end;
    font-size: .78rem;
    font-weight: 700;
    transition: width 1s ease;
}

.bar-purple {
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    color: rgba(255, 255, 255, .9);
}

.bar-gold {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: #0D0D1A;
}

/* STEP LIST */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--white);
    font-size: .9rem;
}

.step-text h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.step-text p {
    color: var(--gray-2);
    font-size: .9rem;
    margin: 0;
}

/* APK CARD */
.apk-card {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
    border: 1px solid rgba(0, 200, 83, .2);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.apk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00C853, #009624);
}

.apk-version {
    font-size: .75rem;
    color: #00C853;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* SLOTS GRID */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.slot-card {
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.slot-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, .15);
}

.slot-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.slot-info {
    padding: 10px 12px;
}

.slot-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.slot-rtp {
    font-size: .72rem;
    color: var(--gold);
}

/* PAYMENT METHODS */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.payment-item {
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    transition: all var(--transition);
}

.payment-item:hover {
    border-color: var(--purple);
}

.payment-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.payment-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--white);
}

.payment-time {
    font-size: .72rem;
    color: var(--gray-3);
    margin-top: 2px;
}

/* SEO CONTENT */
.seo-content {
    padding: 60px 0;
    background: var(--navy-2);
    border-top: 1px solid var(--border);
}

.seo-article {
    max-width: 860px;
    margin: 0 auto;
}

.seo-article h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    color: var(--gold);
}

.seo-article h3 {
    font-size: 1.2rem;
    margin: 24px 0 12px;
    color: var(--white);
}

.seo-article p {
    color: var(--gray-2);
    line-height: 1.8;
}

.seo-article ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.seo-article ul li {
    color: var(--gray-2);
    margin-bottom: 8px;
    line-height: 1.7;
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.seo-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .85rem;
    color: var(--gray-2);
    transition: all var(--transition);
}

.seo-links a:hover {
    background: var(--glass-2);
    color: var(--gold);
    border-color: rgba(107, 45, 139, .5);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--navy-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--white);
    transition: background var(--transition);
}

.faq-q:hover {
    background: var(--glass);
}

.faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform .2s;
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a-inner {
    padding: 0 20px 18px;
    color: var(--gray-2);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 400px;
}

/* FOOTER */
.site-footer {
    background: var(--navy-2);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--gray-3);
    font-size: .88rem;
    margin-top: 16px;
    line-height: 1.7;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-col h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gray-3);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-2);
    font-size: .9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-2);
    transition: all var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--gray-2);
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--gray-3);
}

.footer-bottom a {
    color: var(--gray-2);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* AGE BANNER */
.age-banner {
    background: linear-gradient(90deg, var(--purple-dark), var(--navy-3));
    border-top: 1px solid var(--border);
    padding: 10px 20px;
    text-align: center;
    font-size: .78rem;
    color: var(--gray-2);
}

/* FEATURE ICON */
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* PROMO CODE */
.promo-code-box {
    background: linear-gradient(135deg, var(--navy-3), var(--navy-4));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-code-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: .2em;
    font-family: 'Barlow Condensed', sans-serif;
    margin: 16px 0;
}

.copy-btn {
    cursor: pointer;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--gray-2);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .8rem;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--gold);
    color: #0D0D1A;
    border-color: var(--gold);
}

/* ANIMATE ON SCROLL */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* ── PRINT ── */
@media print {

    .site-header,
    .mobile-nav,
    .hamburger,
    .age-banner {
        display: none !important;
    }
}

/* ── RESPONSIVE 1024px ── */
@media (max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── RESPONSIVE 768px ── */
@media (max-width:768px) {

    .main-nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .hero {
        min-height: auto;
        padding-top: 70px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .apk-card {
        grid-template-columns: 1fr;
    }

    .apk-card img {
        display: none;
    }

    [style*="grid-template-columns:1fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    section,
    .section,
    .section-sm {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* ── RESPONSIVE 480px ── */
@media (max-width:480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .bar-label {
        width: 100px;
        font-size: .72rem;
    }
}