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

:root {
  --navy:      #0B1628;
  --navy-mid:  #162544;
  --red:       #E63946;
  --gold:      #D4AF37;
  --white:     #FFFFFF;
  --off-white: #F4F6F9;
  --gray:      #8A96A8;
  --border:    rgba(255,255,255,0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,22,40,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-countries-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red) !important;
  font-weight: 600 !important;
}

.nav-shop-btn {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-shop-btn:hover { background: #c12936; }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 60px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(230,57,70,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 6px;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-teams {
  display: flex;
  gap: 12px;
  align-items: center;
}

.team-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.15);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid) 0%, #0d1f3c 60%, #1a3058 100%);
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.03) 48px, rgba(255,255,255,0.03) 50px);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stadium-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stadium-lines {
  width: 420px; height: 420px;
  border: 2px solid rgba(230,57,70,0.2);
  border-radius: 50%;
  position: relative;
}

.stadium-lines::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 2px solid rgba(230,57,70,0.1);
  border-radius: 50%;
}

.stadium-lines::after {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: rgba(230,57,70,0.1);
}

.hero-brand-tag {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--red);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.hero-cta-primary {
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.hero-cta-primary:hover { background: #c12936; transform: translateY(-2px); }

.hero-cta-secondary {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-cta-secondary:hover { color: var(--white); }

.hero-gallery {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: flex-end;
  height: 100%;
  justify-content: center;
  padding-bottom: 80px;
}

.hg-jersey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.hg-jersey:nth-child(1) { animation-delay: 0s; }
.hg-jersey:nth-child(2) { animation-delay: 1.3s; transform: translateY(-30px); }
.hg-jersey:nth-child(3) { animation-delay: 0.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hg-img {
  height: 320px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

.hg-jersey-1 .hg-img { height: 300px; }
.hg-jersey-2 .hg-img { height: 340px; }
.hg-jersey-3 .hg-img { height: 280px; }

.hg-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}

/* === HERO BOTTOM BAR === */
.hero-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 48px;
}

.hbb-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hbb-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--red);
}

.hbb-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hbb-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* === SECTION HEAD === */
.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* === WORLD CUP === */
.worldcup {
  padding: 120px 80px;
  background: linear-gradient(180deg, var(--navy) 0%, #0f1e38 100%);
  text-align: center;
}

.wc-label {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

.worldcup h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.wc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 90px;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--white);
}

.cd-unit {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 4px;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gray);
  opacity: 0.5;
}

.wc-sub {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 64px;
  letter-spacing: 0.5px;
}

.wc-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.wt-col { text-align: center; }

.wt-icon {
  width: 60px; height: 60px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
}

.wt-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wt-col p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* === TEAMS === */
.teams {
  padding: 120px 80px;
  background: var(--navy);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.team-card {
  background: var(--navy);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.team-card:hover { background: var(--navy-mid); }

.tc-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  border-radius: 4px;
  padding: 4px 10px;
}

.tc-stripe {
  width: 100%;
  height: 6px;
  margin-bottom: 36px;
  border-radius: 3px;
}

.tc-yellow { background: linear-gradient(90deg, #009c3b, #fb8500); }
.tc-lightblue { background: linear-gradient(90deg, #75aadb, #fff); }
.tc-blue-fr { background: linear-gradient(90deg, #002395, #fff 45%, #ED2939 45%, #ED2939 55%, #fff 55%); }
.tc-black { background: linear-gradient(90deg, #000, #fff 45%, #dd0000 45%); }
.tc-red-pt { background: linear-gradient(90deg, #006847, #ff0000); }
.tc-white-en { background: linear-gradient(90deg, #fff, #fff 45%, #cf142b 45%); }

.tc-info {}

.tc-flag { font-size: 28px; display: block; margin-bottom: 12px; }

.team-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tc-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tc-price {
  font-size: 14px;
  color: var(--gray);
}

.tc-price strong {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.teams-more {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 0.5px;
}

/* === CATEGORIES === */
.categories {
  padding: 120px 80px;
  background: #0f1e38;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cat-card {
  background: var(--navy-mid);
  padding: 48px 32px;
  transition: background 0.3s;
  cursor: pointer;
}

.cat-card:hover { background: var(--red); }

.cat-icon {
  margin-bottom: 24px;
  color: var(--red);
  transition: color 0.3s;
}

.cat-card:hover .cat-icon { color: var(--white); }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cat-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  transition: color 0.3s;
}

.cat-card:hover p { color: rgba(255,255,255,0.75); }

/* === MANIFESTO === */
.manifesto {
  padding: 120px 80px;
  background: var(--navy);
  text-align: center;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--red));
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.manifesto-attr {
  font-size: 14px;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* === TRUST === */
.trust {
  padding: 80px 80px;
  background: #0f1e38;
  border-top: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}

/* === FOOTER === */
.footer {
  background: #060d18;
  border-top: 1px solid var(--border);
  padding: 80px 80px 40px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.fl-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.fl-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-bottom-bar { gap: 24px; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-left { padding: 48px 24px 80px; }
  .worldcup, .teams, .categories { padding: 80px 24px; }
  .wc-teaser { grid-template-columns: 1fr; gap: 32px; }
  .teams-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer { padding: 60px 24px 32px; }
  .footer-links { grid-template-columns: 1fr; gap: 32px; }
  .hbb-num { font-size: 24px; }
  .hbb-desc { display: none; }
  .hbb-divider { display: none; }
  .hero-bottom-bar { flex-wrap: wrap; gap: 16px; }
  .wc-countdown { flex-wrap: wrap; }
  .cd-block { min-width: 70px; padding: 14px 20px; }
  .cd-num { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; }
}

.wc-cta-btn {
  display: inline-block;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}
.wc-cta-btn:hover { background: #c12936; transform: translateY(-2px); }