/* ============================================================
   VIVAGOAL.ONLINE — MAIN STYLESHEET
   Version: 1.0 | © 2026 VivaGoal Ltd
   ============================================================ */

:root {
  --white: #ffffff;
  --blue: #0047AB;
  --blue-dark: #00348a;
  --blue-deeper: #001a5c;
  --blue-light: #e8f0ff;
  --yellow: #FFD700;
  --yellow-dark: #e6c200;
  --red: #CC0000;
  --red-dark: #990000;
  --green: #00a651;
  --gray-50: #fafafa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --bg-dark: #000820;
  --gradient-hero: linear-gradient(135deg, #000820 0%, #001a5c 45%, #0047AB 100%);
  --gradient-dark: linear-gradient(135deg, #000820, #001a5c);
  --gradient-card: linear-gradient(145deg, #ffffff, #f0f4ff);
  --shadow-xs: 0 1px 4px rgba(0,71,171,0.08);
  --shadow-sm: 0 2px 8px rgba(0,71,171,0.12);
  --shadow-md: 0 8px 32px rgba(0,71,171,0.18);
  --shadow-lg: 0 16px 64px rgba(0,71,171,0.22);
  --shadow-xl: 0 24px 80px rgba(0,71,171,0.28);
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
  --header-h: 72px;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ============ TYPOGRAPHY ============ */
.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.condensed { font-family: 'Barlow Condensed', sans-serif; }
h1, h2, h3 { line-height: 1.1; }

/* ============ LAYOUT UTILS ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.container-xs { max-width: 640px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 110px 0; }

/* ============ GRID ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.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-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============ SPACING ============ */
.mt-8{margin-top:8px} .mt-12{margin-top:12px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-12{margin-bottom:12px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px}

/* ============ DISPLAY / TEXT ============ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-blue { color: var(--blue); }
.text-yellow { color: var(--yellow-dark); }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-white { color: white; }
.text-muted { color: var(--gray-600); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-lg { font-size: 18px; }
.font-bold { font-weight: 700; }
.font-600 { font-weight: 600; }

/* ============ BACKGROUNDS ============ */
.bg-white { background: white; }
.bg-light { background: var(--gray-100); }
.bg-blue { background: var(--blue); }
.bg-dark { background: var(--bg-dark); }
.bg-hero { background: var(--gradient-hero); }

/* ============ BADGES ============ */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
}
.badge-blue { background: var(--blue); color: white; }
.badge-yellow { background: var(--yellow); color: #000; }
.badge-red { background: var(--red); color: white; }
.badge-green { background: var(--green); color: white; }
.badge-gray { background: var(--gray-200); color: var(--gray-700); }
.badge-dark { background: var(--bg-dark); color: white; }
.badge-outline-blue { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 26px; border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: var(--radius-xs); }
.btn-lg { padding: 15px 34px; font-size: 17px; border-radius: var(--radius); }
.btn-xl { padding: 18px 44px; font-size: 18px; border-radius: var(--radius); }
.btn-block { width: 100%; }

.btn-primary { background: var(--yellow); color: #000; border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); box-shadow: var(--shadow-md); }
.btn-blue { background: var(--blue); color: white; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--bg-dark); color: white; border-color: var(--bg-dark); }
.btn-dark:hover { background: var(--blue-deeper); }
.btn-red { background: var(--red); color: white; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); }
.btn-green { background: var(--green); color: white; border-color: var(--green); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: white; color: var(--blue-dark); border-color: white; }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: white; }
.btn-ghost { background: transparent; color: var(--gray-700); border-color: var(--gray-300); }
.btn-ghost:hover { background: var(--gray-100); border-color: var(--gray-400); }
.btn-loading { pointer-events: none; opacity: 0.75; }

/* ============ ICON BUTTON ============ */
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-600); text-decoration: none;
  position: relative; transition: all var(--transition); font-size: 15px;
}
.icon-btn:hover { background: var(--blue-light); color: var(--blue); border-color: var(--blue); }
.icon-btn .count {
  position: absolute; top: -5px; right: -5px;
  background: var(--red); color: white; font-size: 10px;
  font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px; display: block;
}
.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: 0.04em; line-height: 0.95;
}
.section-header p {
  font-size: 16px; color: var(--gray-600);
  max-width: 540px; margin: 14px auto 0; line-height: 1.7;
}
.title-bar {
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  margin: 12px auto 0;
}
.section-header.light .eyebrow { color: var(--yellow); }
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ============ CARDS ============ */
.card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden; transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.card-body { padding: 20px; }
.card-footer { padding: 14px 20px; border-top: 1px solid var(--gray-200); }

/* ============ FORMS ============ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group label span { color: var(--red); }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif; font-size: 14px;
  color: var(--gray-900); background: white;
  outline: none; transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,71,171,0.08); }
.form-control::placeholder { color: var(--gray-400); }
.form-control.error { border-color: var(--red); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.input-group { position: relative; }
.input-group .input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--gray-400); font-size: 14px; }
.input-group .form-control { padding-left: 38px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ============ TABLES ============ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--gray-200); }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead { background: var(--bg-dark); }
thead th { padding: 14px 16px; text-align: left; color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; white-space: nowrap; }
tbody tr { border-bottom: 1px solid var(--gray-200); transition: background var(--transition); }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--blue-light); }
tbody td { padding: 13px 16px; color: var(--gray-800); vertical-align: middle; }
tfoot td { padding: 12px 16px; background: var(--gray-100); font-weight: 600; border-top: 2px solid var(--gray-300); }

/* ============ MATCH CARD ============ */
.match-card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200); overflow: hidden;
  transition: all var(--transition); position: relative;
}
.match-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.match-card-header {
  background: var(--gradient-dark); padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.match-comp { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--yellow); }
.match-round { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.match-date-block { text-align: right; font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.match-date-block strong { display: block; font-size: 13px; color: white; }
.match-body { padding: 18px 20px; }
.match-teams { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.team-side { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.team-flag { font-size: 42px; line-height: 1; }
.team-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-align: center; letter-spacing: 0.02em; }
.match-vs-badge { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gray-300); flex-shrink: 0; }
.match-venue-line { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); margin-bottom: 14px; }
.match-venue-line i { color: var(--blue); font-size: 11px; }
.match-card-footer { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.price-block .from-label { font-size: 10px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.1em; }
.price-block .price { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; color: var(--blue); line-height: 1; }
.price-block .avail-label { font-size: 11px; color: var(--green); font-weight: 600; margin-top: 2px; }
.price-block .avail-label.low { color: var(--red); }
.card-actions { display: flex; gap: 8px; align-items: center; }
.fav-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); background: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-400); transition: all var(--transition); font-size: 14px;
}
.fav-btn:hover, .fav-btn.active { color: var(--red); border-color: var(--red); background: #fff0f0; }
.hot-badge { position: absolute; top: 12px; right: 12px; }

/* ============ AUCTION CARD ============ */
.auction-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.auction-card:hover { transform: translateY(-4px); border-color: var(--yellow); box-shadow: 0 16px 48px rgba(255,215,0,0.15); }
.auction-img { position: relative; aspect-ratio: 4/3; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; }
.auction-img .emoji { font-size: 80px; }
.auction-timer { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(204,0,0,0.92); padding: 7px 14px; display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: white; }
.auction-timer i { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }
.auction-body { padding: 16px; }
.auction-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 6px; }
.auction-body .desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 14px; }
.auction-bids { display: flex; justify-content: space-between; align-items: flex-end; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); }
.bid-current-label { font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.bid-current-price { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; color: var(--yellow); }
.bid-count { font-size: 11px; color: rgba(255,255,255,0.4); }
.buy-now-tag { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: line-through; }

/* ============ HEADER ============ */
.header-top { background: var(--blue-deeper); color: white; padding: 7px 0; font-size: 12px; }
.header-top-inner { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.header-top a { color: rgba(255,255,255,0.8); margin-left: 16px; transition: color var(--transition); }
.header-top a:hover { color: var(--yellow); }
.header-top .trust-row { display: flex; align-items: center; gap: 16px; }
.header-top .trust-row span { display: flex; align-items: center; gap: 4px; }
.header-top .trust-row i { color: var(--yellow); }

.site-header { background: white; box-shadow: 0 2px 16px rgba(0,71,171,0.1); position: sticky; top: 0; z-index: 1000; height: var(--header-h); }
.header-inner { display: flex; align-items: center; height: var(--header-h); gap: 18px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 42px; height: 42px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--yellow); letter-spacing: 0; border: 2.5px solid var(--yellow); }
.logo-text .name { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--blue); letter-spacing: 0.06em; line-height: 1; }
.logo-text .tagline { font-size: 9px; color: var(--gray-500); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }

.header-search { flex: 1; max-width: 500px; position: relative; }
.header-search input { width: 100%; padding: 10px 48px 10px 16px; border: 2px solid var(--gray-200); border-radius: 30px; font-size: 14px; outline: none; transition: all var(--transition); }
.header-search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,71,171,0.08); }
.header-search input::placeholder { color: var(--gray-400); }
.header-search .search-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); background: var(--blue); color: white; border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.header-search .search-btn:hover { background: var(--blue-dark); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { font-weight: 600; font-size: 14px; color: var(--gray-700); padding: 8px 12px; border-radius: var(--radius-sm); transition: all var(--transition); white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); background: var(--blue-light); }
.main-nav a.auction-link { color: var(--red); font-weight: 700; }
.main-nav a.auction-link:hover { background: #fff0f0; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hamburger-btn { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray-700); padding: 4px; }

/* ============ TRUST BAR ============ */
.trust-bar { background: var(--blue); padding: 14px 0; }
.trust-bar-items { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: white; }
.trust-item i { font-size: 18px; color: var(--yellow); }
.trust-item strong { font-size: 13px; display: block; line-height: 1; }
.trust-item span { font-size: 11px; opacity: 0.75; }

/* ============ HERO ============ */
.hero { background: var(--gradient-hero); min-height: 620px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; pointer-events: none; }
.hero-orb-1 { width: 500px; height: 500px; background: var(--blue); top: -150px; right: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--yellow); bottom: -100px; left: 10%; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; width: 100%; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-eyebrow .bar { width: 36px; height: 3px; background: var(--yellow); border-radius: 2px; }
.hero-eyebrow span { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; color: var(--yellow); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(54px, 7.5vw, 92px); line-height: 0.88; color: white; letter-spacing: 0.03em; margin-bottom: 18px; }
.hero h1 .yellow { color: var(--yellow); }
.hero h1 .outline { -webkit-text-stroke: 2px white; color: transparent; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 30px; max-width: 500px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat .n { font-family: 'Bebas Neue', sans-serif; font-size: 34px; color: var(--yellow); letter-spacing: 0.05em; line-height: 1; }
.hero-stat .l { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============ COUNTDOWN ============ */
.countdown-widget {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl); padding: 28px;
}
.countdown-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; color: var(--yellow); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 4px; }
.countdown-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: white; letter-spacing: 0.04em; margin-bottom: 18px; }
.countdown-units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 22px; }
.cu { background: rgba(255,255,255,0.09); border-radius: var(--radius-sm); padding: 12px 6px; text-align: center; }
.cu .n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: white; line-height: 1; display: block; }
.cu .l { font-size: 9px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; }
.hot-matches { display: flex; flex-direction: column; gap: 8px; }
.mini-match { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.05); border-radius: var(--radius-sm); padding: 10px 14px; cursor: pointer; transition: all var(--transition); border: 1px solid transparent; }
.mini-match:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.mm-teams { display: flex; align-items: center; gap: 8px; flex: 1; }
.mm-flag { font-size: 20px; }
.mm-info { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; color: white; font-weight: 600; }
.mm-info small { display: block; font-size: 10px; color: rgba(255,255,255,0.45); font-family: 'Barlow', sans-serif; font-weight: 400; }
.mm-vs { font-size: 10px; color: rgba(255,255,255,0.35); font-weight: 700; padding: 0 4px; }
.mm-price { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

/* ============ TABS ============ */
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 22px; border-radius: 30px; border: 2px solid var(--gray-200); background: white; cursor: pointer; color: var(--gray-600); transition: all var(--transition); }
.tab-btn:hover { border-color: var(--blue); color: var(--blue); }
.tab-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.tab-btn.red.active { background: var(--red); border-color: var(--red); }

/* ============ PLAYER CARD ============ */
.player-card { flex-shrink: 0; width: 175px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.player-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.player-img { height: 175px; background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; font-size: 68px; position: relative; }
.player-num { position: absolute; bottom: 4px; right: 8px; font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: rgba(255,255,255,0.12); line-height: 1; }
.player-info { padding: 12px; }
.player-info .pname { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: white; }
.player-info .pteam { font-size: 11px; color: var(--yellow); }
.player-info .ppos { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ============ MERCH CARD ============ */
.merch-card { background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-200); overflow: hidden; transition: all var(--transition); }
.merch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.merch-img { aspect-ratio: 1; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 76px; position: relative; }
.merch-body { padding: 14px 16px; }
.merch-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.merch-team-tag { font-size: 12px; color: var(--gray-500); margin-bottom: 10px; }
.merch-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--gray-200); }
.merch-price { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--blue); }
.merch-original { font-size: 12px; color: var(--gray-400); text-decoration: line-through; margin-left: 4px; }
.add-cart-btn { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.add-cart-btn:hover { background: var(--blue-dark); transform: scale(1.12); }

/* ============ FIXTURE ROW ============ */
.fixture-table { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fixture-row { display: grid; grid-template-columns: 110px 1fr 40px 1fr 120px; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--gray-200); gap: 12px; transition: background var(--transition); cursor: pointer; }
.fixture-row:last-child { border-bottom: none; }
.fixture-row:hover { background: var(--blue-light); }
.fixture-row.header-row { background: var(--bg-dark); cursor: default; }
.fixture-row.header-row:hover { background: var(--bg-dark); }
.fixture-row.header-row span { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Barlow Condensed', sans-serif; }
.fx-date { font-size: 12px; color: var(--gray-500); }
.fx-date strong { display: block; font-size: 13px; color: var(--gray-900); font-weight: 700; }
.fx-team { display: flex; align-items: center; gap: 8px; }
.fx-team.right { flex-direction: row-reverse; }
.fx-flag { font-size: 22px; }
.fx-name { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; }
.fx-vs { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--gray-300); text-align: center; }
.fx-action { text-align: right; }

/* ============ MODAL ============ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.62); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal { background: white; border-radius: var(--radius-xl); width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: var(--gradient-dark); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.modal-header h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: white; letter-spacing: 0.04em; }
.modal-close { background: rgba(255,255,255,0.15); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.modal-close:hover { background: rgba(255,255,255,0.28); }
.modal-body { padding: 24px; }

/* ============ NOTIFICATION ============ */
.notification {
  position: fixed; top: 80px; right: 20px; z-index: 9998;
  background: var(--green); color: white;
  padding: 14px 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-xl); display: flex; align-items: center;
  gap: 10px; font-weight: 600; font-size: 14px;
  transform: translateX(120%); transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
  max-width: 360px;
}
.notification.show { transform: translateX(0); }
.notification.error { background: var(--red); }
.notification.info { background: var(--blue); }
.notification.warning { background: #e67e00; }

/* ============ MOBILE NAV ============ */
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: var(--bg-dark); z-index: 9997; flex-direction: column; padding: 24px; }
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-close { align-self: flex-end; background: none; border: none; color: white; font-size: 26px; cursor: pointer; margin-bottom: 24px; padding: 4px; }
.mobile-nav-overlay a { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; color: white; text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); letter-spacing: 0.04em; display: flex; align-items: center; gap: 12px; transition: color var(--transition); }
.mobile-nav-overlay a:hover { color: var(--yellow); }

/* ============ SPINNER ============ */
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ LOADING SKELETON ============ */
.skeleton { background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ============ STARS ============ */
.stars { color: var(--yellow); font-size: 14px; letter-spacing: 1px; }

/* ============ PROGRESS BAR ============ */
.progress-bar { height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--yellow)); transition: width 0.6s ease; }

/* ============ STATS STRIP ============ */
.stats-strip { background: var(--blue); color: white; padding: 40px 0; }
.stats-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .n { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--yellow); line-height: 1; letter-spacing: 0.05em; }
.stat-item .l { font-size: 14px; opacity: 0.8; margin-top: 4px; font-weight: 500; }

/* ============ NEWSLETTER ============ */
.newsletter-section { background: var(--gradient-dark); padding: 64px 0; }
.newsletter-form-wrap { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; }
.newsletter-form-wrap input { flex: 1; padding: 14px 20px; border-radius: 30px; border: none; font-size: 15px; outline: none; font-family: 'Barlow', sans-serif; }
.newsletter-form-wrap .btn { border-radius: 30px; }

/* ============ FOOTER ============ */
footer { background: #000820; color: white; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.75; margin: 14px 0; max-width: 280px; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); text-decoration: none; transition: all var(--transition); font-size: 14px; }
.social-btn:hover { background: var(--yellow); color: #000; border-color: var(--yellow); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-col ul a:hover { color: white; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.ftrust { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 8px 12px; display: flex; align-items: center; gap: 8px; }
.ftrust i { color: var(--yellow); font-size: 16px; }
.ftrust strong { display: block; font-size: 11px; color: white; }
.ftrust span { font-size: 10px; color: rgba(255,255,255,0.4); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: white; }
.payment-methods-row { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.pm { background: rgba(255,255,255,0.1); border-radius: 4px; padding: 3px 8px; font-size: 11px; color: white; font-weight: 700; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { background: var(--gradient-hero); padding: 70px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 80px); color: white; letter-spacing: 0.05em; line-height: 1; }
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 500px; margin: 12px auto 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.page-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); background: white; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--gray-700); transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }
.page-btn:disabled { opacity: 0.4; pointer-events: none; }

/* ============ TICKET PREVIEW WIDGET ============ */
.ticket-widget {
  background: linear-gradient(135deg, #000820, #001a5c, #0047AB);
  border-radius: var(--radius-lg); padding: 24px; color: white;
  position: relative; overflow: hidden;
}
.ticket-widget::after { content: ''; position: absolute; right: -20px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: white; border-radius: 50%; }
.ticket-widget::before { content: ''; position: absolute; left: -20px; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: white; border-radius: 50%; }
.ticket-dashed { border-top: 2px dashed rgba(255,255,255,0.2); margin: 16px 0; }
.ticket-qr { width: 60px; height: 60px; background: white; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 28px; }

/* ============ ADMIN ============ */
.admin-sidebar { background: var(--bg-dark); min-height: 100vh; padding: 24px 0; }
.admin-sidebar .logo { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-nav { margin-top: 16px; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 600; transition: all var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: white; background: rgba(255,255,255,0.06); border-left-color: var(--yellow); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-main { padding: 32px; }
.stat-card { background: white; border-radius: var(--radius); padding: 20px; border: 1px solid var(--gray-200); box-shadow: var(--shadow-xs); }
.stat-card .sc-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.stat-card .sc-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: var(--gray-900); line-height: 1; letter-spacing: 0.04em; }
.stat-card .sc-label { font-size: 13px; color: var(--gray-500); margin-top: 2px; }
.stat-card .sc-change { font-size: 12px; font-weight: 600; margin-top: 6px; }
.sc-up { color: var(--green); }
.sc-down { color: var(--red); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { display: none; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger-btn { display: block; }
  .header-search { max-width: 260px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fixture-row { grid-template-columns: 90px 1fr 32px 1fr 90px; gap: 6px; padding: 10px 12px; font-size: 13px; }
  .fx-flag { font-size: 18px; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 52px; }
  .header-top .trust-row { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form-wrap { flex-direction: column; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
}
