/* worldcupbetting2026.ca — premium gold/charcoal betting theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=DM+Sans:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

:root {
    --bg: #0a0b0d;
    --surface: #111318;
    --card: #161a21;
    --card2: #1c2130;
    --gold: #f0b429;
    --gold-light: #ffd166;
    --gold-dim: rgba(240, 180, 41, .12);
    --gold-border: rgba(240, 180, 41, .22);
    --emerald: #059669;
    --emerald-light: #10b981;
    --emerald-dim: rgba(5, 150, 105, .12);
    --emerald-border: rgba(5, 150, 105, .22);
    --red: #ef4444;
    --blue: #3b82f6;
    --text: #f1f5f9;
    --text-muted: rgba(241, 245, 249, .6);
    --text-dim: rgba(241, 245, 249, .28);
    --border: rgba(255, 255, 255, .06);
    --border2: rgba(255, 255, 255, .1);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'DM Mono', monospace;
    --glow-gold: 0 0 24px rgba(240, 180, 41, .3), 0 0 60px rgba(240, 180, 41, .1);
    --glow-em: 0 0 20px rgba(5, 150, 105, .35);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .45);
    --transition: .22s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.65;
    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
}

/* BG texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(240, 180, 41, .05) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 80%, rgba(5, 150, 105, .04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0
}

/* SKIP */
.skip-link {
    position: absolute;
    top: -99px;
    left: 0;
    background: var(--gold);
    color: #000;
    padding: .5rem 1rem;
    z-index: 999;
    border-radius: 0 0 8px 0;
    font-weight: 700;
    font-family: var(--font-sans);
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1
}

/* RESPONSIBLE GAMBLING BANNER */
.rg-bar {
    background: rgba(240, 180, 41, .06);
    border-bottom: 1px solid var(--gold-border);
    padding: .4rem 0;
    text-align: center
}

.rg-bar p {
    font-size: .7rem;
    color: var(--text-dim);
    font-family: var(--font-mono)
}

.rg-bar strong {
    color: var(--gold)
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 11, 13, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border)
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.logo img {
    border-radius: 8px
}

.logo-text .logo-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.1
}

.logo-text .logo-name span {
    color: var(--gold)
}

.logo-text .logo-tag {
    font-size: .58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: var(--font-mono)
}

.main-nav ul {
    display: flex;
    gap: .1rem
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: .4rem .85rem;
    border-radius: 6px;
    transition: all var(--transition);
    border: 1px solid transparent
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-dim)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    cursor: pointer;
    padding: .35rem .5rem
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 11, 13, .97);
    border-bottom: 1px solid var(--gold-border);
    z-index: 99;
    padding: .75rem 0
}

.mobile-nav.open {
    display: block
}

.mobile-nav li a {
    display: block;
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition)
}

.mobile-nav li a:hover {
    color: var(--gold);
    background: var(--gold-dim)
}

/* HERO */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    filter: brightness(.2) saturate(1.3)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 11, 13, .7) 0%, rgba(10, 11, 13, .5) 50%, rgba(10, 11, 13, .9) 100%)
}

/* Gold shimmer lines */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(240, 180, 41, .02) 80px, rgba(240, 180, 41, .02) 81px);
    z-index: 1
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: .95;
    color: #fff;
    margin-bottom: 1.25rem
}

.hero h1 .gold {
    color: var(--gold);
    text-shadow: var(--glow-gold)
}

.hero h1 .em {
    color: var(--emerald-light)
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 2rem
}

.hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #0a0b0d;
    font-family: var(--font-sans);
    font-size: .9rem;
    font-weight: 700;
    padding: .75rem 1.85rem;
    border-radius: 8px;
    transition: all var(--transition);
    box-shadow: var(--glow-gold)
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fff, var(--gold-light));
    box-shadow: 0 0 40px rgba(240, 180, 41, .5);
    color: #000
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--gold-border);
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 600;
    padding: .75rem 1.85rem;
    border-radius: 8px;
    transition: all var(--transition)
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim)
}

.hero-odds {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border)
}

.odds-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.odds-item .flag-row {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: .2rem
}

.odds-item .odd {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold)
}

.odds-item .odd-label {
    font-family: var(--font-mono);
    font-size: .58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .07em
}

/* SECTION */
.section {
    padding: 5rem 0;
    position: relative;
    z-index: 1
}

.section-tag {
    font-family: var(--font-mono);
    font-size: .65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: .6rem;
    display: block
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: .75rem
}

.section-title span {
    color: var(--gold)
}

.section-title .em {
    color: var(--emerald-light)
}

.section-sub {
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.75
}

.section-header {
    margin-bottom: 3rem
}

/* ODDS TABLE */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .87rem
}

.data-table caption {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: left;
    padding: .7rem 1.1rem;
    border-bottom: 1px solid var(--border)
}

.data-table th {
    background: rgba(240, 180, 41, .05);
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .7rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-border)
}

.data-table td {
    padding: .65rem 1.1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    vertical-align: middle
}

.data-table tr:last-child td {
    border: none
}

.data-table tr:hover td {
    background: rgba(240, 180, 41, .03)
}

.data-table .highlight td {
    background: rgba(240, 180, 41, .05);
    color: var(--text)
}

.flag-sm {
    border-radius: 2px;
    vertical-align: middle;
    margin-right: .4rem
}

.odd-cell {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold)
}

.odd-move-up {
    color: var(--emerald-light);
    font-size: .7rem
}

.odd-move-dn {
    color: var(--red);
    font-size: .7rem
}

/* STAR RATING */
.stars {
    color: var(--gold);
    letter-spacing: -.05em;
    font-size: .85rem
}

/* CARD */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem
}

.bet-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.bet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent)
}

.bet-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--glow-gold);
    transform: translateY(-3px)
}

.bet-card .icon {
    font-size: 2rem;
    margin-bottom: .75rem
}

.bet-card .title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: .4rem
}

.bet-card .desc {
    font-size: .83rem;
    color: var(--text-dim);
    line-height: 1.65
}

/* BADGE */
.badge-gold {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .6rem;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    border-radius: 3px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid var(--gold-border)
}

.badge-em {
    background: var(--emerald-dim);
    color: var(--emerald-light);
    border: 1px solid var(--emerald-border)
}

.badge-red {
    background: rgba(239, 68, 68, .1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, .25)
}

/* BAR CHART */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.bar-item {
    display: grid;
    grid-template-columns: 160px 1fr 72px;
    gap: .75rem;
    align-items: center
}

.bar-label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .4rem
}

.bar-track {
    height: 7px;
    background: rgba(255, 255, 255, .05);
    border-radius: 4px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), rgba(240, 180, 41, .3));
    transition: width 1.3s cubic-bezier(.4, 0, .2, 1)
}

.bar-fill.em {
    background: linear-gradient(90deg, var(--emerald-light), rgba(5, 150, 105, .2))
}

.bar-val {
    font-family: var(--font-mono);
    font-size: .75rem;
    color: var(--gold);
    text-align: right
}

/* SISTER SITE */
.sister-section {
    background: linear-gradient(135deg, #070809 0%, #111318 50%, #070809 100%);
    border-top: 1px solid rgba(240, 180, 41, .12);
    border-bottom: 1px solid var(--border);
    padding: 4.5rem 0
}

/* SEO */
.seo-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0
}

.seo-article h2 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: .85rem
}

.seo-article p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem
}

.seo-article a {
    color: var(--gold);
    border-bottom: 1px dashed var(--gold-border)
}

.seo-article a:hover {
    border-color: var(--gold)
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem
}

.ql {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .3rem .85rem;
    border-radius: 4px;
    transition: all var(--transition)
}

.ql:hover {
    background: rgba(240, 180, 41, .2);
    color: var(--gold)
}

/* BREADCRUMB */
.breadcrumbs {
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim);
    padding: .65rem 0;
    position: relative;
    z-index: 1
}

.breadcrumbs a {
    color: var(--text-dim)
}

.breadcrumbs a:hover {
    color: var(--gold)
}

.breadcrumbs span {
    margin: 0 .35rem;
    opacity: .4
}

/* FOOTER */
.site-footer {
    background: #060708;
    border-top: 1px solid var(--gold-border);
    padding: 3rem 0 1.5rem;
    position: relative;
    z-index: 1
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .3
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem
}

.footer-brand p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: .75rem
}

.footer-rg {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: .85rem 1rem;
    margin-top: 1rem;
    font-size: .75rem;
    color: var(--gold)
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem
}

.footer-col li {
    margin-bottom: .4rem
}

.footer-col a {
    font-size: .82rem;
    color: var(--text-dim)
}

.footer-col a:hover {
    color: var(--gold)
}

.footer-social {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center
}

.footer-social p {
    font-family: var(--font-mono);
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: .85rem
}

.social-row {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .05em;
    padding: .4rem .9rem;
    border-radius: 4px;
    border: 1px solid;
    transition: all var(--transition)
}

.soc-btn:hover {
    transform: translateY(-2px)
}

.soc-fb {
    border-color: rgba(24, 119, 242, .3);
    color: #1877f2;
    background: rgba(24, 119, 242, .06)
}

.soc-fb:hover {
    background: rgba(24, 119, 242, .14)
}

.soc-x {
    border-color: rgba(255, 255, 255, .12);
    color: #e7e9ea;
    background: rgba(255, 255, 255, .03)
}

.soc-x:hover {
    background: rgba(255, 255, 255, .09)
}

.soc-tt {
    border-color: rgba(255, 0, 80, .22);
    color: #ff0050;
    background: rgba(255, 0, 80, .05)
}

.soc-tt:hover {
    background: rgba(255, 0, 80, .12)
}

.soc-ig {
    border-color: rgba(225, 48, 108, .22);
    color: #e1306c;
    background: rgba(225, 48, 108, .05)
}

.soc-ig:hover {
    background: rgba(225, 48, 108, .12)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: .7rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: .5rem
}

.footer-bottom a {
    color: var(--text-dim)
}

.footer-bottom a:hover {
    color: var(--gold)
}

.footer-dev {
    text-align: center;
    font-family: var(--font-mono);
    font-size: .67rem;
    color: var(--text-dim);
    margin-top: .5rem
}

.footer-dev a {
    color: var(--gold)
}

.footer-dev a:hover {
    color: #fff
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .55s ease both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero h1 {
        font-size: 3.5rem
    }

    .hero-odds {
        gap: 1rem
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .bar-item {
        grid-template-columns: 110px 1fr 60px
    }
}
/* ── Tracker CTA buttons ── */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: linear-gradient(135deg, #f6c90e, #e6a800);
    color: #000;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s, transform .15s;
    margin-right: .5rem;
}
.header-cta:hover {
    opacity: .88;
    transform: translateY(-1px);
}
@media(max-width:768px) {
    .header-cta {
        display: none;
    }
}
/* Mobile nav tracker link */
.mob-cta-link {
    display: block;
    background: linear-gradient(135deg, #f6c90e, #e6a800) !important;
    color: #000 !important;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 6px;
    margin: .25rem .75rem .5rem;
    padding: .6rem 1rem !important;
    font-size: .9rem !important;
    letter-spacing: .04em;
}
.mob-cta-link:hover {
    opacity: .88;
}
