/* 2026 World Cup Theme - Light Edition */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&display=swap');

:root {
    --wc-green: #1a6b3a;
    --wc-dark: #0d3320;
    --wc-gold: #b8860b;
    --wc-red: #c0392b;
    --bg: #f0f4ef;
    --text: #1a1a1a;
    --text-muted: #666;
    --card-bg: #ffffff;
    --card-border: #dde4d8;
}

body {
    background: linear-gradient(180deg, #eaf2e5 0%, #f5f8f3 100%);
    color: var(--text);
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navbar - dark green, gold accent */
.navbar {
    background: var(--wc-dark) !important;
    border-bottom: 3px solid var(--wc-gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.navbar-brand {
    font-weight: 900;
    color: var(--wc-gold) !important;
    font-size: 1.4rem;
    letter-spacing: 1px;
}
.navbar .nav-link {
    color: #d0d8cc !important;
    font-weight: 500;
}
.navbar .nav-link:hover {
    color: #fff !important;
}

/* Cards - white with subtle shadow */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card-header {
    background: #f5f6f5;
    border-bottom: 1px solid #dde4d8;
    color: var(--text);
    font-weight: 600;
}

/* Login/register page headers */
.card-header.bg-dark {
    background: #1a1a1a !important;
    color: #ffffff !important;
}
}

/* Match Card */
.match-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: var(--wc-gold);
}

/* Team names - DARK and BOLD */
.match-card h5, .match-card .team-name {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}
.match-card h5 small {
    font-weight: 600;
}
.match-card small.text-muted {
    color: #555 !important;
    font-weight: 600;
}

/* VS text */
.match-card h4.text-muted {
    color: #888 !important;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Odds Strip - light card */
.odds-strip {
    background: #f5f8f3;
    border-radius: 6px;
    padding: 6px 10px;
    color: #444;
    font-weight: 500;
    font-size: 0.85rem;
    border: 1px solid #dde4d8;
}

/* Team flags */
.team-flag { font-size: 2.5rem; line-height: 1.1; }
.team-flag-lg { font-size: 4rem; line-height: 1.1; }

/* Buttons */
.btn-success {
    background: var(--wc-green);
    border-color: var(--wc-green);
    color: #fff;
    font-weight: 600;
}
.btn-success:hover {
    background: #158a48;
    border-color: var(--wc-gold);
}
.btn-outline-success {
    color: var(--wc-green);
    border-color: rgba(26, 107, 58, 0.4);
    font-weight: 500;
}
.btn-outline-success:hover {
    background: var(--wc-gold);
    color: #000;
    border-color: var(--wc-gold);
}
.btn-outline-warning {
    color: #8b6914;
    border-color: var(--wc-gold);
    font-weight: 600;
}
.btn-outline-warning:hover {
    background: var(--wc-gold);
    color: #000;
}

/* Form controls */
.form-control, .form-select {
    background: #f8faf7;
    border: 1px solid #ccd5c8;
    color: var(--text);
    font-family: 'Noto Sans SC', sans-serif;
}
.form-control:focus, .form-select:focus {
    background: #fff;
    border-color: var(--wc-green);
    color: #000;
    box-shadow: 0 0 0 0.2rem rgba(26, 107, 58, 0.15);
}
.form-label {
    color: #333;
    font-weight: 600;
}

/* Tables */
.table { color: var(--text); }
.table thead th {
    background: #f0f4ef;
    border-bottom: 2px solid var(--wc-green);
    color: var(--wc-dark);
    font-weight: 700;
}
.table-hover tbody tr:hover {
    background: rgba(26, 107, 58, 0.04);
}

/* Badges */
.badge.bg-danger { background: #c0392b !important; }
.badge.bg-warning { background: #d4a017 !important; color: #000 !important; font-weight: 600; }
.badge.bg-success { background: var(--wc-green) !important; }
.badge.bg-secondary { background: #6c757d !important; }

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--wc-dark), #1a5a35, var(--wc-dark)) !important;
    border-radius: 16px;
    color: #fff !important;
}

/* Footer */
.footer {
    background: var(--wc-dark);
    color: #889988;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    margin-top: 50px;
    padding: 20px;
    text-align: center;
}

/* Alerts */
.alert-info { background: #e8f4fd; border-color: #b8d8f8; color: #1a3a5c; }
.alert-danger { background: #fde8e8; border-color: #f5c6c6; color: #5c1a1a; }
.alert-success { background: #e8fbe8; border-color: #c8f0c8; color: #1a3a1a; }
.alert-warning { background: #fef8e8; border-color: #f0dca0; color: #5c4a10; }

/* WC button */
.btn-wc {
    background: var(--wc-green);
    border: 1px solid rgba(184, 134, 11, 0.4);
    color: #fff;
    font-weight: 700;
}
.btn-wc:hover {
    background: #158a48;
    border-color: var(--wc-gold);
}

/* Links */
a { color: #1a6b3a; }
a:hover { color: #b8860b; }
h1, h2, h3, h4 { font-weight: 700; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #eaf2e5; }
::-webkit-scrollbar-thumb { background: #c0d0c0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--wc-gold); }

/* Card footer / odds strip */
.card-footer {
    background: #f5f8f3;
    border-top: 1px solid #dde4d8;
}

/* Responsive */
@media (max-width: 768px) {
    .team-flag { font-size: 2rem; }
    .match-card h5 { font-size: 1rem !important; }
    .navbar-brand { font-size: 1.1rem; }
}
