/*
Theme Name: KaiYun Sports
Theme URI: https://kaiyunsports.com
Author: KaiYun Sports
Description: 开云体育官方WordPress主题 - 专业体育博彩娱乐平台主题，支持体育投注、真人娱乐、电竞、彩票等板块
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: kaiyun-sports
*/

/* ===== CSS Variables ===== */
:root {
    --primary: #0057FF;
    --primary-dark: #0040CC;
    --primary-glow: rgba(0, 87, 255, 0.4);
    --gold: #FFB800;
    --gold-light: #FFD700;
    --gold-glow: rgba(255, 184, 0, 0.35);
    --bg-deepest: #04060F;
    --bg-dark: #080C1A;
    --bg-card: #0D1326;
    --bg-card-hover: #111930;
    --bg-nav: rgba(6, 9, 20, 0.98);
    --text-white: #FFFFFF;
    --text-bright: #E8EEFF;
    --text-muted: #7A87B0;
    --text-dim: #4A557A;
    --border-subtle: rgba(255,255,255,0.06);
    --border-glow: rgba(0, 87, 255, 0.3);
    --red-accent: #FF2D55;
    --green-accent: #00D68F;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-display: 'Rajdhani', 'Noto Sans SC', sans-serif;
    --font-body: 'Noto Sans SC', 'PingFang SC', sans-serif;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-deepest);
    color: var(--text-bright);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 2px; }

/* ===== Layout ===== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-pad {
    padding: 60px 0;
}

/* ===== Typography ===== */
h1,h2,h3,h4,h5 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #003DB8 100%);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1A6AFF 0%, var(--primary) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px var(--primary-glow);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #E09000 100%);
    color: #000;
    box-shadow: 0 4px 20px var(--gold-glow);
    font-weight: 700;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-bright);
    border: 1px solid var(--border-subtle);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(0,87,255,0.1);
}

/* ===== Header / Navigation ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: -1px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Main Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link .nav-icon {
    font-size: 16px;
}

.nav-badge {
    background: var(--red-accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    letter-spacing: 0.05em;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover { color: #fff; border-color: rgba(255,255,255,0.15); }

/* Bottom Nav Bar (Category) */
.nav-categories {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-categories::-webkit-scrollbar { display: none; }

.cat-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    min-width: max-content;
    padding: 0 20px;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}

.cat-item:hover,
.cat-item.active {
    color: var(--text-white);
    border-bottom-color: var(--primary);
}

.cat-item.active {
    color: var(--primary);
}

.cat-item .cat-emoji {
    font-size: 16px;
}

/* ===== Hero Banner ===== */
.hero-section {
    background: var(--bg-dark);
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider { height: 240px; }
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide-1 {
    background: linear-gradient(135deg, #060C28 0%, #0A1845 40%, #0D2070 70%, #0A1845 100%);
}

.hero-slide-2 {
    background: linear-gradient(135deg, #1a0600 0%, #3d1200 40%, #6b2000 70%, #3d1200 100%);
}

.hero-slide-3 {
    background: linear-gradient(135deg, #060e14 0%, #0a1f2d 40%, #0f3347 70%, #0a1f2d 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

.hero-tag {
    display: inline-block;
    background: var(--red-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    animation: pulse-tag 2s infinite;
}

@keyframes pulse-tag {
    0%,100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-headline span {
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold-light);
}

.hero-sub {
    font-size: clamp(13px, 2vw, 16px);
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Decorative geometric overlay */
.hero-geo {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-geo::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: hero-glow 4s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    from { transform: scale(0.9); opacity: 0.6; }
    to { transform: scale(1.1); opacity: 1; }
}

/* Slide Indicators */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    width: 24px;
    background: var(--primary);
}

/* ===== Quick Stats Bar ===== */
.stats-bar {
    background: linear-gradient(90deg, #0D1326 0%, #0A1230 50%, #0D1326 100%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
    overflow: hidden;
}

.stats-ticker {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: ticker-scroll 40s linear infinite;
}

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.stat-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.stat-value.up { color: var(--green-accent); }
.stat-value.hot { color: var(--gold); }

/* ===== Category Cards ===== */
.game-categories {
    background: var(--bg-dark);
    padding: 40px 0;
}

.cat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.cat-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,87,255,0.15);
}

.cat-card:hover::before { opacity: 1; }

.cat-card-icon {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

.cat-card-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.cat-card-count {
    font-size: 11px;
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

.cat-card.featured {
    background: linear-gradient(135deg, #001A52 0%, #0D1E5A 100%);
    border-color: rgba(0,87,255,0.3);
}

.cat-card.featured .cat-card-name { color: var(--gold); }

/* ===== Live Matches ===== */
.live-section {
    background: var(--bg-deepest);
    padding: 40px 0;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,45,85,0.15);
    border: 1px solid rgba(255,45,85,0.4);
    color: var(--red-accent);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-accent);
    animation: live-blink 1s infinite;
}

@keyframes live-blink {
    0%,100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.match-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.match-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.match-card:hover {
    border-color: var(--border-glow);
    box-shadow: 0 4px 20px rgba(0,87,255,0.1);
}

.match-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.match-league {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.match-time {
    font-size: 11px;
    color: var(--red-accent);
    font-weight: 700;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.team {
    text-align: center;
    flex: 1;
}

.team-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2px;
}

.team-flag {
    font-size: 20px;
    margin-bottom: 4px;
    display: block;
}

.match-score {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-white);
    text-align: center;
    padding: 0 10px;
    letter-spacing: -1px;
}

.match-odds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.odd-btn {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 6px 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.odd-btn:hover {
    background: rgba(0,87,255,0.15);
    border-color: var(--primary);
}

.odd-label {
    font-size: 10px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 2px;
}

.odd-value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
}

/* ===== Promotions ===== */
.promo-section {
    background: var(--bg-dark);
    padding: 40px 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .promo-grid { grid-template-columns: 1fr; }
}

.promo-card {
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.promo-card:hover { transform: translateY(-2px); }

.promo-card-1 {
    background: linear-gradient(135deg, #003DB8 0%, #001A6B 50%, #000B35 100%);
    border: 1px solid rgba(0,87,255,0.3);
}

.promo-card-2 {
    background: linear-gradient(135deg, #6B1600 0%, #3D0D00 50%, #1A0600 100%);
    border: 1px solid rgba(255,100,0,0.3);
}

.promo-card-3 {
    background: linear-gradient(135deg, #006B2D 0%, #003D1A 50%, #001A0B 100%);
    border: 1px solid rgba(0,200,100,0.3);
}

.promo-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.promo-amount {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px var(--gold-glow);
    margin-bottom: 4px;
}

.promo-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.promo-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.promo-decor {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.15;
    pointer-events: none;
}

.promo-small-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== Partners ===== */
.partners-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 30px 0;
}

.partners-track {
    overflow: hidden;
    position: relative;
}

.partners-track::before,
.partners-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-track::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-card), transparent);
}

.partners-track::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-card), transparent);
}

.partners-scroll {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: partners-loop 20s linear infinite;
}

@keyframes partners-loop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.partner-logo:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.partner-logo-text {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.partner-logo-sub {
    font-size: 10px;
    color: var(--text-dim);
}

/* ===== Features / Why Choose Us ===== */
.features-section {
    background: var(--bg-deepest);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-icon-1 { background: rgba(0,87,255,0.15); }
.feature-icon-2 { background: rgba(255,184,0,0.15); }
.feature-icon-3 { background: rgba(0,214,143,0.15); }
.feature-icon-4 { background: rgba(255,45,85,0.15); }

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Footer ===== */
.site-footer {
    background: #020408;
    border-top: 1px solid var(--border-subtle);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 14px 0 20px;
    max-width: 300px;
}

.footer-certifications {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-dim);
    transition: var(--transition);
}

.footer-legal a:hover { color: var(--text-muted); }

/* ===== Age Warning ===== */
.age-warning {
    background: rgba(255,184,0,0.08);
    border: 1px solid rgba(255,184,0,0.2);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.age-warning-text {
    font-size: 12px;
    color: rgba(255,184,0,0.8);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .main-nav { display: none; }
    .hero-content { padding: 0 30px; }
}

@media (max-width: 768px) {
    .hero-ctas .btn { font-size: 13px; padding: 9px 18px; }
    .section-pad { padding: 40px 0; }
    .cat-cards { grid-template-columns: repeat(3, 1fr); }
    .match-cards { grid-template-columns: 1fr; }
}

/* ===== Utility ===== */
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }
