/*
Theme Name: GoalVertex News
Theme URI: https://www.goalvertex.com/blog/
Author: GoalVertex
Author URI: https://www.goalvertex.com/
Description: Editorial news theme for GoalVertex, matching the GoalVertex.com landing page design system (dark/orange palette, pitch-line hero, Bebas Neue + DM Sans + DM Mono). Includes home, single, archive, search and 404 templates styled as a football news publication.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gv-news
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  --bg: #0e0e0e; --bg2: #141414; --surface: #1a1a1a; --surface2: #222;
  --border: #2c2c2c; --text: #f2f2f2; --text2: #9a9a9a; --text3: #5a5a5a;
  --brand: #ff6b00; --brand-light: #ff8c3a; --brand-dim: rgba(255,107,0,.12);
  --shadow: 0 4px 24px rgba(0,0,0,.55); --shadow-sm: 0 2px 10px rgba(0,0,0,.45);
  --header-bg: rgba(14,14,14,.94);
  --hero-grad: linear-gradient(105deg,rgba(14,14,14,.98) 35%,rgba(14,14,14,.82) 58%,rgba(14,14,14,.35) 100%);
}
[data-theme="dark"] {
  --bg: #0e0e0e; --bg2: #141414; --surface: #1a1a1a; --surface2: #222;
  --border: #2c2c2c; --text: #f2f2f2; --text2: #9a9a9a; --text3: #5a5a5a;
  --brand: #ff6b00; --brand-light: #ff8c3a; --brand-dim: rgba(255,107,0,.12);
  --shadow: 0 4px 24px rgba(0,0,0,.55); --shadow-sm: 0 2px 10px rgba(0,0,0,.45);
  --header-bg: rgba(14,14,14,.94);
  --hero-grad: linear-gradient(105deg,rgba(14,14,14,.98) 35%,rgba(14,14,14,.82) 58%,rgba(14,14,14,.35) 100%);
}
[data-theme="light"] {
  --bg: #f3f3f3; --bg2: #e9e9e9; --surface: #fff; --surface2: #f7f7f7;
  --border: #ddd; --text: #111; --text2: #555; --text3: #999;
  --brand: #d95500; --brand-light: #f06820; --brand-dim: rgba(217,85,0,.1);
  --shadow: 0 4px 24px rgba(0,0,0,.09); --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --header-bg: rgba(243,243,243,.96);
  --hero-grad: linear-gradient(105deg,rgba(233,233,233,.92) 38%,rgba(233,233,233,.75) 58%,rgba(233,233,233,.3) 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background .3s, color .3s;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; height: auto; display: block }
ul, ol { list-style: none }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }

/* ==========================================================================
   2. HEADER
   ========================================================================== */
header.gv-header {
  position: sticky; top: 0; z-index: 300;
  background: var(--header-bg);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner { max-width: 1260px; margin: auto; display: flex; align-items: center; gap: 10px; padding: 0 20px; height: 62px; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 27px; letter-spacing: 1.5px; color: var(--text); text-decoration: none; white-space: nowrap; flex-shrink: 0; display: flex; align-items: baseline; gap: 6px; }
.logo span { color: var(--brand); }
.logo small { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--text3); letter-spacing: .5px; text-transform: uppercase; }

nav.desktop { display: flex; gap: 2px; flex: 1; justify-content: center; }
nav.desktop a { color: var(--text2); text-decoration: none; font-size: 13px; font-weight: 600; padding: 7px 11px; border-radius: 7px; transition: color .2s, background .2s; white-space: nowrap; }
nav.desktop a:hover, nav.desktop a.active { color: var(--brand); background: var(--surface2); }

.nav-controls { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }
.theme-toggle { width: 38px; height: 38px; border-radius: 10px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 17px; transition: border-color .2s, background .2s; flex-shrink: 0; }
.theme-toggle:hover { border-color: var(--brand); background: var(--brand-dim); }

.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; width: 38px; height: 38px; flex-shrink: 0; }
.hamburger span { display: block; width: 20px; 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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 3px; padding: 10px 16px 16px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text2); text-decoration: none; font-size: 15px; font-weight: 600; padding: 10px 14px; border-radius: 8px; transition: all .2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--brand); background: var(--brand-dim); }

@media (max-width: 768px) {
  nav.desktop { display: none; }
  .hamburger { display: flex; }
}

/* ==========================================================================
   3. HERO / MASTHEAD
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: 90px 20px 75px; border-bottom: 1px solid var(--border); }
.hero--inner { padding: 60px 20px 55px; }

.hero-pitch {
  position: absolute; inset: 0; z-index: 0;
  background-color: #0a1a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='520'%3E%3Crect width='1200' height='520' fill='%230a1a0a'/%3E%3Crect x='0' y='0' width='120' height='520' fill='%230d1f0d'/%3E%3Crect x='240' y='0' width='120' height='520' fill='%230d1f0d'/%3E%3Crect x='480' y='0' width='120' height='520' fill='%230d1f0d'/%3E%3Crect x='720' y='0' width='120' height='520' fill='%230d1f0d'/%3E%3Crect x='960' y='0' width='120' height='520' fill='%230d1f0d'/%3E%3Crect x='50' y='30' width='1100' height='460' fill='none' stroke='%23ffffff22' stroke-width='2.5'/%3E%3Cline x1='600' y1='30' x2='600' y2='490' stroke='%23ffffff1a' stroke-width='2'/%3E%3Ccircle cx='600' cy='260' r='80' fill='none' stroke='%23ffffff18' stroke-width='2'/%3E%3Ccircle cx='600' cy='260' r='5' fill='%23ff6b0080'/%3E%3Crect x='50' y='155' width='165' height='210' fill='none' stroke='%23ffffff14' stroke-width='2'/%3E%3Crect x='50' y='200' width='65' height='120' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Ccircle cx='160' cy='260' r='4' fill='%23ffffff18'/%3E%3Cpath d='M215 195 A80 80 0 0 1 215 325' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Crect x='985' y='155' width='165' height='210' fill='none' stroke='%23ffffff14' stroke-width='2'/%3E%3Crect x='1085' y='200' width='65' height='120' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Ccircle cx='1040' cy='260' r='4' fill='%23ffffff18'/%3E%3Cpath d='M985 195 A80 80 0 0 0 985 325' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Cpath d='M50 50 A20 20 0 0 1 70 30' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Cpath d='M1130 30 A20 20 0 0 1 1150 50' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Cpath d='M50 470 A20 20 0 0 0 70 490' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3Cpath d='M1130 490 A20 20 0 0 0 1150 470' fill='none' stroke='%23ffffff10' stroke-width='1.5'/%3E%3CradialGradient id='og' cx='0%25' cy='50%25' r='60%25'%3E%3Cstop offset='0%25' stop-color='%23ff6b00' stop-opacity='0.22'/%3E%3Cstop offset='100%25' stop-color='%23ff6b00' stop-opacity='0'/%3E%3C/radialGradient%3E%3Crect width='1200' height='520' fill='url(%23og)'/%3E%3C/svg%3E");
  background-size: cover; background-position: center; transition: opacity .3s;
}
[data-theme="light"] .hero-pitch { opacity: .55; }
[data-theme="dark"]  .hero-pitch { opacity: 1; }

.hero-overlay { position: absolute; inset: 0; z-index: 1; background: var(--hero-grad); }
.hero::after { content:''; position:absolute; left:0; top:0; bottom:0; width:4px; background:linear-gradient(180deg,transparent,var(--brand) 30%,var(--brand) 70%,transparent); z-index:3; }
.hero-inner { max-width: 1260px; margin: auto; position: relative; z-index: 4; }

.hero-badge { display:inline-flex; align-items:center; gap:8px; background:var(--brand-dim); border:1px solid var(--brand); color:var(--brand); font-size:11.5px; font-weight:700; padding:6px 14px; border-radius:20px; margin-bottom:22px; letter-spacing:.6px; text-transform:uppercase; }
.hero-badge::before { content:'●'; font-size:8px; animation:pulse-dot 1.6s ease infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero h1 { font-family:'Bebas Neue',sans-serif; font-size:clamp(50px,7.5vw,90px); line-height:.98; color:var(--text); max-width:680px; margin-bottom:22px; letter-spacing:.5px; }
.hero--inner h1 { font-size: clamp(40px, 6vw, 72px); }
.hero h1 em { font-style:normal; color:var(--brand); }
.hero p { font-size:16px; color:var(--text2); max-width:500px; line-height:1.75; margin-bottom:40px; }
.hero-stats { display:flex; gap:40px; flex-wrap:wrap; }
.stat { display:flex; flex-direction:column; gap:3px; }
.stat-num { font-family:'Bebas Neue',sans-serif; font-size:36px; color:var(--brand); line-height:1; }
.stat-label { font-size:11px; font-weight:700; color:var(--text3); text-transform:uppercase; letter-spacing:.6px; }

/* Breadcrumb (used on single/archive pages) */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text3); margin-bottom: 18px; flex-wrap: wrap; position: relative; z-index: 4; }
.breadcrumb a { color: var(--text3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span[aria-current] { color: var(--brand); font-weight: 600; }

/* ==========================================================================
   4. PAGE BODY / LAYOUT
   ========================================================================== */
.page-body { max-width:1260px; margin:40px auto; padding:0 20px; display:grid; grid-template-columns:1fr 320px; gap:28px; align-items:start; }
.page-body--single { display: block; }
.col-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:20px; flex-wrap:wrap; gap:12px; }
.col-title { font-family:'Bebas Neue',sans-serif; font-size:26px; letter-spacing:.5px; }

.date-tabs { display:flex; gap:6px; flex-wrap: wrap; }
.date-tab { padding:7px 16px; border-radius:8px; font-size:12.5px; font-weight:700; border:1.5px solid var(--border); background:transparent; color:var(--text2); transition:all .2s; text-decoration:none; display:inline-block; }
.date-tab:hover { border-color:var(--brand); color:var(--brand); }
.date-tab.active { background:var(--brand); border-color:var(--brand); color:#fff; }

/* ==========================================================================
   5. FEATURED STORY
   ========================================================================== */
.gv-featured { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 22px; display: grid; grid-template-columns: 1.15fr 1fr; }
.gv-featured-media { position: relative; min-height: 260px; background: var(--surface2); }
.gv-featured-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gv-featured-body { padding: 24px 26px 24px 8px; display: flex; flex-direction: column; justify-content: center; }
.gv-featured-body h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin-bottom: 12px; letter-spacing: .3px; }
.gv-featured-body h2 a:hover { color: var(--brand); }
.gv-featured-excerpt { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 14px; }

@media (max-width: 780px) {
  .gv-featured { grid-template-columns: 1fr; }
  .gv-featured-media { min-height: 200px; }
  .gv-featured-body { padding: 20px; }
}

/* ==========================================================================
   6. NEWS GRID / ARTICLE CARDS (styled after the match-card component)
   ========================================================================== */
.gv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; }
@media (max-width: 700px) { .gv-grid { grid-template-columns: 1fr; } }

.gv-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .25s, box-shadow .25s, transform .2s;
  display: flex; flex-direction: column;
}
.gv-card:hover { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow-sm); transform: translateY(-2px); }

.gv-card-media { position: relative; aspect-ratio: 16/9; background: var(--surface2); overflow: hidden; }
.gv-card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-top { padding: 11px 16px 0; display: flex; justify-content: space-between; align-items: center; }
.card-league { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: var(--text3); display: flex; align-items: center; gap: 6px; }
.league-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.card-time { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--text3); }

.gv-card-body { padding: 11px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.gv-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .3px; line-height: 1.2; }
.gv-card h3 a:hover { color: var(--brand); }
.gv-card-excerpt { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; }

.bet-tag { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 6px; display: inline-flex; align-self: flex-start; }
.bet-over  { background: rgba(41,121,255,.14); color: #5b9fff; }
.bet-under { background: rgba(255,145,0,.14); color: #ff9100; }
.bet-win   { background: rgba(0,196,106,.14); color: #00c46a; }
.bet-btts  { background: rgba(170,0,255,.14); color: #cc66ff; }

/* ==========================================================================
   7. PAGINATION
   ========================================================================== */
.gv-pagination { display: flex; justify-content: center; gap: 6px; margin: 22px 0 30px; flex-wrap: wrap; }
.gv-pagination a, .gv-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 34px; padding: 0 10px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 12.5px; font-weight: 700;
  color: var(--text2); background: var(--surface);
}
.gv-pagination a:hover { border-color: var(--brand); color: var(--brand); }
.gv-pagination span.current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ==========================================================================
   8. SINGLE ARTICLE
   ========================================================================== */
.gv-article-head { max-width: 800px; margin: 0 auto 20px; }
.gv-article-head h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 5vw, 52px); line-height: 1.1; margin-bottom: 14px; letter-spacing: .3px; }
.gv-meta-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text3); flex-wrap: wrap; }
.gv-meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text3); }
.gv-meta-row .mono { font-family: 'DM Mono', monospace; }

.gv-article-media { max-width: 980px; margin: 0 auto 26px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.gv-article-media img { width: 100%; }

.gv-article-body { max-width: 800px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px clamp(18px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.gv-article-content { font-size: 15.5px; line-height: 1.85; color: var(--text); }
.gv-article-content p { margin-bottom: 16px; }
.gv-article-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: .3px; margin: 28px 0 12px; }
.gv-article-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .3px; margin: 22px 0 10px; }
.gv-article-content ul, .gv-article-content ol { margin: 0 0 16px 20px; list-style: disc; }
.gv-article-content ol { list-style: decimal; }
.gv-article-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.gv-article-content img { border-radius: 10px; margin: 10px 0; }
.gv-article-content blockquote { border-left: 3px solid var(--brand); background: var(--surface2); padding: 12px 16px; border-radius: 0 8px 8px 0; font-style: italic; color: var(--text2); margin: 16px 0; }
.gv-article-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13.5px; }
.gv-article-content table th, .gv-article-content table td { border: 1px solid var(--border); padding: 8px 10px; text-align: left; }
.gv-article-content table th { background: var(--surface2); }

.gv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.gv-tags a { font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 600; background: var(--surface2); color: var(--text2); padding: 6px 13px; border-radius: 20px; }
.gv-tags a:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

/* E-E-A-T style author box, reused from the landing page component */
.eeeat-box { max-width: 800px; margin: 24px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start; }
.eeeat-avatar { width: 54px; height: 54px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--brand), #c83d00); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: #fff; overflow: hidden; }
.eeeat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.eeeat-body h4 { font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.eeeat-body .role { font-size: 12px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.eeeat-body p { font-size: 12.5px; color: var(--text2); line-height: 1.6; }

.ymyl-banner { max-width: 800px; margin: 24px auto 0; background: var(--surface2); border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: 0 10px 10px 0; padding: 14px 18px; font-size: 13px; color: var(--text2); line-height: 1.6; }
.ymyl-banner strong { color: var(--text); }

.gv-related { max-width: 980px; margin: 34px auto 0; }

/* ==========================================================================
   9. ARCHIVE / SEARCH HEADS
   ========================================================================== */
.archive-head { text-align: center; padding: 30px 20px 8px; max-width: 720px; margin: 0 auto; position: relative; z-index: 4; }
.archive-head .eyebrow { font-size: 11px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.archive-head h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 48px); margin-bottom: 8px; }
.archive-head p { color: var(--text2); font-size: 13.5px; }

.gv-empty { text-align: center; padding: 50px 20px; color: var(--text2); }

/* ==========================================================================
   10. SIDEBAR
   ========================================================================== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.side-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.side-card-hd { padding: 13px 16px; border-bottom: 1px solid var(--border); font-family: 'Bebas Neue', sans-serif; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.side-card-hd::before { content: ''; width: 3px; height: 16px; background: var(--brand); border-radius: 2px; }

.tip-cats { padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.tip-cat { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; background: var(--surface2); border-radius: 8px; border: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 13.5px; font-weight: 600; transition: all .2s; }
.tip-cat:hover { border-color: var(--brand); color: var(--brand); }
.tip-cat-count { font-size: 12px; color: var(--brand); font-weight: 700; font-family: 'DM Mono', monospace; }

.accuracy-card { background: linear-gradient(135deg, #ff6b00, #c83d00); border-radius: 14px; padding: 26px 22px; color: #fff; box-shadow: 0 8px 32px rgba(255,107,0,.28); margin-top: 16px; }
.gv-featured-body .bet-tag { margin-bottom: 12px; }
.accuracy-card .big-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; }
.accuracy-card .big-label { font-size: 11px; font-weight: 700; opacity: .75; text-transform: uppercase; letter-spacing: .5px; }
.accuracy-card p { font-size: 13px; opacity: .85; line-height: 1.6; margin-top: 12px; }

.mobile-sidebar-section { display: none; }
@media (max-width: 920px) {
  .page-body { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .mobile-sidebar-section { display: block; margin-top: 8px; }
}

/* ==========================================================================
   11. TRUST BAR
   ========================================================================== */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 20px; }
.trust-inner { max-width: 1260px; margin: auto; display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text2); }
.trust-item::before { content: '✓'; color: var(--brand); font-weight: 900; }

/* ==========================================================================
   12. 404
   ========================================================================== */
.gv-404 { text-align: center; padding: 70px 20px; max-width: 560px; margin: 0 auto; position: relative; z-index: 4; }
.gv-404-code { font-family: 'Bebas Neue', sans-serif; font-size: 90px; color: var(--brand); line-height: 1; }
.gv-404 h1 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; margin: 10px 0 10px; letter-spacing: .3px; }
.gv-404 p { color: var(--text2); font-size: 13.5px; margin-bottom: 22px; }
.gv-404-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--brand); color: #fff; padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: .2s; }
.btn-primary:hover { background: var(--brand-light); }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1.5px solid var(--border); padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: .2s; }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }

/* ==========================================================================
   13. FOOTER
   ========================================================================== */
footer.gv-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 56px 20px 28px; }
.footer-grid { max-width: 1260px; margin: auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--text); display: flex; align-items: baseline; gap: 6px; }
.footer-logo span { color: var(--brand); }
.footer-desc { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 420px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .4px; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom { max-width: 1260px; margin: 30px auto 0; padding-top: 22px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; font-size: 12px; color: var(--text3); text-align: center; }
.footer-bottom .brand-name { color: var(--brand); font-weight: 700; }
.gv-disclaimer { max-width: 900px; margin: 14px auto 0; font-size: 10.5px; color: var(--text3); opacity: .8; line-height: 1.6; text-align: center; }

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .hero { padding: 52px 20px 48px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 30px; }
  .col-header { flex-direction: column; align-items: flex-start; }
  .eeeat-box { flex-direction: column; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: clamp(44px, 13vw, 72px); }
  .date-tabs { flex-wrap: wrap; }
  .hero--inner { padding: 44px 20px 40px; }
}
