/* PlayUZU Mexico — styles.css */
:root {
    --purple: #7B2FBE;
    --purple-light: #9B4FDE;
    --purple-dark: #5A1F8E;
    --purple-deep: #0D0D1A;
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #CC9900;
    --white: #FFFFFF;
    --text: #E8E0F0;
    --text-muted: #9A8FB0;
    --card-bg: rgba(123, 47, 190, 0.12);
    --card-border: rgba(123, 47, 190, 0.35);
    --header-bg: rgba(13, 13, 26, 0.97);
    --green: #00C853;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(123, 47, 190, 0.25);
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--purple-deep);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition)
}

a:hover {
    color: var(--gold-light)
}

ul {
    list-style: none
}

table {
    border-collapse: collapse;
    width: 100%
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--purple);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: .9rem;
    z-index: 10000;
    transition: top .2s
}

.skip-link:focus {
    top: 8px
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(123, 47, 190, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.logo-link img {
    height: 44px;
    width: auto
}

/* MAIN NAV */
.main-nav {
    display: flex;
    gap: 4px;
    flex: 1
}

.main-nav a {
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(123, 47, 190, 0.3)
}

.main-nav a.live-tag {
    color: var(--gold);
    position: relative
}

.main-nav a.live-tag::after {
    content: 'LIVE';
    position: absolute;
    top: -4px;
    right: -2px;
    background: var(--green);
    color: #000;
    font-size: .5rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 4px;
    letter-spacing: .5px
}

/* HEADER CTA */
.header-cta {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    border: none;
    letter-spacing: .3px;
    white-space: nowrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4)
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(255, 255, 255, 0.25)
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: #fff
}

.btn-purple:hover {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(123, 47, 190, 0.4)
}

.btn-sm {
    padding: 8px 18px;
    font-size: .85rem
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-left: auto
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    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;
    transform: scaleX(0)
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.99);
    z-index: 999;
    flex-direction: column;
    padding: 16px 0 24px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    border-bottom: 1px solid var(--card-border);
    transform: translateX(100%);
    transition: transform .3s ease
}

.mobile-nav.open {
    transform: translateX(0)
}

.mobile-nav a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(123, 47, 190, 0.1);
    transition: all var(--transition)
}

.mobile-nav a:hover {
    color: var(--gold);
    background: rgba(123, 47, 190, 0.1);
    padding-left: 32px
}

.mobile-nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    margin: 16px 20px 0;
    border-radius: 50px;
    text-align: center;
    font-weight: 700 !important;
    border-bottom: none !important
}

.mobile-nav-cta:hover {
    opacity: .9;
    padding-left: 24px !important
}

/* HERO */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1A0A2E 0%, #0D0D1A 40%, #1A0A2E 100%);
    overflow: hidden;
    padding: 80px 0 60px
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(123, 47, 190, 0.25) 0%, transparent 70%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.35);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff
}

.hero h1 span {
    color: var(--gold)
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 480px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    opacity: .6
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--purple-deep) 0%, transparent 60%)
}

.hero-bonus {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    background: rgba(123, 47, 190, 0.15);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    backdrop-filter: blur(8px)
}

.hero-bonus-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block
}

.hero-bonus-label {
    font-size: .85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block
}

.hero-bonus-sub {
    font-size: .75rem;
    color: var(--gold);
    margin-top: 12px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block
}

/* PAGE HERO */
.page-hero {
    position: relative;
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #1A0A2E 0%, #0D0D1A 100%);
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(123, 47, 190, 0.2) 0%, transparent 70%)
}

.page-hero .container {
    position: relative;
    z-index: 2
}

.page-hero .hero-badge {
    margin-bottom: 14px
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #fff
}

.page-hero p {
    color: var(--text-muted);
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: .82rem
}

.breadcrumb a {
    color: var(--text-muted)
}

.breadcrumb a:hover {
    color: var(--gold)
}

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: .5
}

.breadcrumb span {
    color: var(--text-muted)
}

/* SECTIONS */
.section {
    padding: 70px 0
}

.section-alt {
    background: rgba(123, 47, 190, 0.04)
}

.section-header {
    text-align: center;
    margin-bottom: 48px
}

.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px
}

.section-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem
}

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition)
}

.card:hover {
    border-color: var(--purple-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px
}

.card p {
    font-size: .92rem;
    color: var(--text-muted);
    line-height: 1.65
}

/* STATS BAR */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(123, 47, 190, 0.1);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 40px
}

.stat-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 22px 16px;
    border-right: 1px solid var(--card-border)
}

.stat-item:last-child {
    border-right: none
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1
}

.stat-label {
    font-size: .78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 4px;
    display: block
}

/* BONUS CARDS */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.bonus-card {
    background: linear-gradient(135deg, rgba(123, 47, 190, 0.2) 0%, rgba(13, 13, 26, 0.8) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition)
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--gold))
}

.bonus-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.1)
}

.bonus-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3)
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.bonus-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin: 10px 0 6px
}

.bonus-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px
}

.bonus-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--green);
    font-weight: 600
}

.bonus-tag svg {
    width: 14px;
    height: 14px;
    fill: currentColor
}

/* SPIN CARDS */
.spins-highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(123, 47, 190, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 30px 0
}

.spins-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1
}

.spins-label {
    font-size: .9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px
}

.spins-note {
    font-size: .78rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 10px
}

/* DATA TABLE */
.data-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    margin: 20px 0
}

.data-table {
    width: 100%;
    font-size: .9rem
}

.data-table caption {
    text-align: left;
    padding: 14px 16px;
    font-size: .82rem;
    color: var(--text-muted);
    font-style: italic;
    border-bottom: 1px solid var(--card-border);
    background: rgba(123, 47, 190, 0.08)
}

.data-table thead th {
    background: rgba(123, 47, 190, 0.2);
    color: var(--gold);
    font-weight: 700;
    padding: 13px 16px;
    text-align: left;
    font-size: .83rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    border-bottom: 2px solid var(--card-border)
}

.data-table tbody tr {
    border-bottom: 1px solid rgba(123, 47, 190, 0.15);
    transition: background var(--transition)
}

.data-table tbody tr:hover {
    background: rgba(123, 47, 190, 0.1)
}

.data-table tbody tr:last-child {
    border-bottom: none
}

.data-table td {
    padding: 13px 16px;
    color: var(--text);
    vertical-align: middle
}

.data-table td strong {
    color: #fff
}

/* BADGES */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px
}

.badge-gold {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.35)
}

.badge-purple {
    background: rgba(123, 47, 190, 0.2);
    color: var(--purple-light);
    border: 1px solid rgba(123, 47, 190, 0.4)
}

.badge-green {
    background: rgba(0, 200, 83, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 200, 83, 0.3)
}

/* CHART */
.chart-wrap {
    margin: 24px 0
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.bar-label {
    width: 140px;
    font-size: .85rem;
    color: var(--text-muted);
    text-align: right;
    flex-shrink: 0
}

.bar-track {
    flex: 1;
    background: rgba(123, 47, 190, 0.15);
    border-radius: 50px;
    height: 28px;
    overflow: hidden;
    border: 1px solid var(--card-border)
}

.bar-fill {
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding-left: 12px;
    font-size: .78rem;
    font-weight: 700;
    color: #000;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    width: 0;
    transition: width 1.2s ease
}

.bar-fill.purple {
    background: linear-gradient(90deg, var(--purple-light), var(--purple-dark));
    color: #fff
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius)
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.7
}

.faq-item.open .faq-answer {
    display: block
}

/* SEO CONTENT */
.seo-content {
    padding: 60px 0;
    border-top: 1px solid var(--card-border)
}

.seo-article h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 32px 0 12px;
    padding-top: 8px
}

.seo-article h2:first-child {
    margin-top: 0
}

.seo-article h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 22px 0 10px
}

.seo-article p {
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: .97rem
}

.seo-article strong {
    color: var(--white)
}

.seo-article a {
    color: var(--purple-light);
    text-decoration: underline;
    text-underline-offset: 3px
}

.seo-article a:hover {
    color: var(--gold)
}

.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border)
}

.seo-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid var(--card-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: .83rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition)
}

.seo-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 215, 0, 0.05)
}

/* FOOTER */
.site-footer {
    background: rgba(5, 5, 15, 0.98);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px
}

.footer-brand p {
    color: var(--text-muted);
    font-size: .88rem;
    line-height: 1.6;
    margin-top: 12px;
    max-width: 260px
}

.footer-col h4 {
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-links a {
    color: var(--text-muted);
    font-size: .88rem;
    transition: color var(--transition)
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding: 20px 0
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.footer-badge {
    background: rgba(123, 47, 190, 0.15);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text-muted)
}

.footer-bottom a {
    color: var(--text-muted)
}

.footer-bottom a:hover {
    color: var(--gold)
}

/* AGE BANNER */
.age-banner {
    background: rgba(123, 47, 190, 0.15);
    border-top: 1px solid rgba(123, 47, 190, 0.25);
    padding: 10px 20px;
    text-align: center;
    font-size: .75rem;
    color: var(--text-muted)
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s ease, transform .55s ease
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .hero-bonus {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {

    .main-nav,
    .header-cta {
        display: none
    }

    .hamburger {
        display: flex
    }

    .mobile-nav {
        display: flex
    }

    .hero {
        min-height: auto;
        padding: 60px 0 40px
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .section {
        padding: 48px 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .stats-bar {
        flex-direction: column
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--card-border)
    }

    .stat-item:last-child {
        border-bottom: none
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero-ctas {
        flex-direction: column
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center
    }

    .bonus-grid {
        grid-template-columns: 1fr
    }
}