:root {
  --yellow: #f4c315;
  --yellow-deep: #e1a900;
  --dark: #050607;
  --panel: #111315;
  --header: #3d3f42;
  --text: #f4f4f4;
  --muted: #b7bcc4;
  --line: #e3e3e3;
  --green: #00b536;
  --blue: #113b78;
  --danger: #b82e3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #24262a;
  background: #0b1416;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 60;
  padding: 10px 14px;
  color: #fff;
  background: #111;
}

.skip-link:focus {
  top: 16px;
}

.stadium-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 17%, rgba(255,255,255,.95) 0 2%, rgba(255,255,255,.26) 5%, transparent 14%),
    radial-gradient(circle at 91% 17%, rgba(255,255,255,.88) 0 2%, rgba(255,255,255,.23) 5%, transparent 14%),
    linear-gradient(180deg, rgba(5,10,13,.92) 0 28%, rgba(17,37,43,.83) 45%, rgba(33,74,25,.86) 68%, rgba(73,110,28,.95) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 72px);
}

.stadium-bg::before {
  content: "";
  position: absolute;
  inset: 6% -8% 40%;
  background:
    linear-gradient(165deg, transparent 0 43%, rgba(255,255,255,.56) 44%, transparent 45%),
    linear-gradient(15deg, transparent 0 43%, rgba(255,255,255,.46) 44%, transparent 45%),
    radial-gradient(ellipse at center, rgba(255,255,255,.10), transparent 66%);
  opacity: .7;
}

.stadium-bg::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0 8%, rgba(0,0,0,.18) 22%, transparent 23%),
    repeating-linear-gradient(95deg, rgba(255,255,255,.06) 0 1px, transparent 1px 96px),
    linear-gradient(90deg, rgba(25,90,22,.98), rgba(95,142,34,.9), rgba(30,93,25,.98));
}

.stadium-light {
  position: absolute;
  top: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,.22) 22%, transparent 60%);
  filter: blur(4px);
  animation: lightPulse 4s ease-in-out infinite;
}

.stadium-light.left {
  left: 2%;
}

.stadium-light.right {
  right: 2%;
  animation-delay: 1.6s;
}

@keyframes lightPulse {
  0%, 100% { opacity: .72; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.04); }
}

.site-shell {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  background: rgba(0,0,0,.92);
  box-shadow: 0 0 40px rgba(0,0,0,.74);
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  padding: 20px 34px;
  color: #fff;
  background: #000;
}

.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px 16px;
  color: #d5dbe2;
  background: rgba(0,0,0,.96);
  font-size: .88rem;
  font-weight: 800;
  text-align: center;
}

.notice-bar span + span::before {
  content: "•";
  margin-right: 16px;
  color: var(--yellow);
}

.site-header {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
  background: #000;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 14px 34px;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-menu a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.2);
  background: #111;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.site-logo {
  display: inline-grid;
  line-height: .82;
  text-decoration: none;
}

.logo-main {
  color: var(--yellow);
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 900;
  letter-spacing: 4px;
}

.logo-mid {
  justify-self: end;
  margin: 2px 2px 0 0;
  color: #fff;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.top-header nav a {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-copy {
  position: relative;
  min-height: 270px;
  padding: 18px 34px 28px;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.15), transparent 18%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 88px);
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.08) 43%, transparent 52%);
  transform: translateX(-100%);
  animation: heroShine 5.5s ease-in-out infinite;
}

@keyframes heroShine {
  0%, 45% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  color: #9aa0a8;
  font-size: .9rem;
  font-weight: 700;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 1250px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(2rem, 3.7vw, 3.05rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero-list {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  padding-left: 24px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-list li + li {
  margin-top: 3px;
}

.trust-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: #d7d7d7;
  font-size: .92rem;
  font-weight: 900;
}

.trust-line span::before {
  content: "✓";
  margin-right: 7px;
  color: #22e94d;
  font-weight: 900;
}

.disclaimer-link {
  position: absolute;
  right: 18px;
  bottom: 4px;
  z-index: 2;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.ranking-table {
  background: #fff;
}

.table-head,
.rating-row {
  display: grid;
  grid-template-columns: 52px 210px minmax(250px, 1fr) 210px 160px 220px;
}

.table-head {
  min-height: 46px;
  align-items: center;
  color: #fff;
  background: #3c3f43;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.rating-row {
  position: relative;
  min-height: 132px;
  align-items: stretch;
  border-bottom: 1px solid #e2e2e2;
  background: linear-gradient(180deg, #fff, #f7f7f7);
  animation: rowIn .6s ease both;
  opacity: 1;
}

.rating-row.has-ribbon {
  min-height: 180px;
  padding-top: 48px;
}

.rating-row:nth-of-type(2) { animation-delay: .05s; }
.rating-row:nth-of-type(3) { animation-delay: .1s; }
.rating-row:nth-of-type(4) { animation-delay: .15s; }
.rating-row:nth-of-type(5) { animation-delay: .2s; }
.rating-row:nth-of-type(6) { animation-delay: .25s; }
.rating-row:nth-of-type(7) { animation-delay: .3s; }
.rating-row:nth-of-type(8) { animation-delay: .35s; }
.rating-row:nth-of-type(9) { animation-delay: .4s; }
.rating-row:nth-of-type(10) { animation-delay: .45s; }

@keyframes rowIn {
  from { transform: translateY(14px); }
  to { transform: translateY(0); }
}

.rating-row > div:not(.ribbon) {
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
}

.rank-cell {
  background: #e9edff;
  color: #999;
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-cell img {
  margin: auto;
  transition: transform .25s ease;
}

.rating-row:hover .brand-cell img {
  transform: scale(1.05);
}

.info-cell {
  color: #363636;
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.18;
}

.review-cell {
  color: #333;
}

.stars {
  display: block;
  color: var(--yellow);
  font-size: 1.75rem;
  letter-spacing: -1px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0,0,0,.18);
}

.review-cell small {
  display: block;
  color: #444;
  font-weight: 800;
}

.score-ring {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 7px solid var(--green);
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
  font-size: 2.25rem;
  font-weight: 500;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.04);
}

.text-score {
  color: var(--blue);
  font-size: 2.55rem;
  font-weight: 500;
}

.visit-cell {
  gap: 5px;
  color: #d8d8d8;
  font-weight: 700;
}

.visit-cell > span {
  min-height: 22px;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(190px, 100%);
  min-height: 62px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), #f5a623);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 3px 0 rgba(0,0,0,.12);
  transition: transform .2s ease, filter .2s ease;
}

.visit-btn:hover,
.visit-btn:focus {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  color: #fff;
  background: #222;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  border-color: var(--yellow);
  color: #111;
  background: linear-gradient(135deg, var(--yellow), #f5a623);
}

.btn.secondary,
.btn.light {
  color: #fff;
  background: #151515;
}

.mini-link {
  color: #416ad8;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.ribbon {
  position: absolute;
  left: 18px;
  top: 7px;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  min-height: 26px;
  padding: 4px 18px 4px 54px;
  color: #fff;
  background: #15a346;
  font-size: .98rem;
  font-weight: 900;
  text-align: left;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ribbon::before {
  content: "★";
  position: absolute;
  left: 9px;
  top: -5px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #16b950;
}

.ribbon.alt {
  top: 7px;
}

.legal-panel {
  padding: 32px 34px 42px;
  color: #dfe5ea;
  background: rgba(0,0,0,.94);
}

.legal-panel h2 {
  margin: 0 0 12px;
  color: #fff;
}

.legal-panel p {
  max-width: 1120px;
  margin: 0;
  color: #c1c7cf;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-actions a {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 10px 22px;
  color: #c7cdd5;
  background: rgba(16, 22, 24, .97);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}

.cookie-bar[hidden] {
  display: none;
}

.cookie-bar p {
  max-width: 770px;
  margin: 0;
}

.cookie-bar button {
  min-width: 136px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: #1f2b35;
  background: #c9d7e7;
  font-weight: 900;
  cursor: pointer;
}

.cookie-bar a {
  color: #fff;
  font-size: .9rem;
  font-weight: 900;
}

.page-hero,
.content-section,
.compare-section,
.faq-section {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.page-hero h1,
.content-section h2,
.compare-section h2,
.faq-section h2 {
  color: #fff;
}

.page-hero p,
.content-section p,
.compare-section p,
.faq-section p,
.legal-layout p {
  color: #d1d7de;
}

.legal-layout,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.legal-layout article,
.contact-panel,
.contact-form,
details {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.7);
}

.plain-list,
.feature-list {
  color: #e8e8e8;
}

.resource-list {
  display: grid;
  gap: 10px;
}

.resource-list a,
.text-link {
  color: var(--yellow);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #59606a;
  color: #fff;
  background: #111;
}

.site-footer {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 34px;
  color: #d1d7de;
  background: #000;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-grid a,
.footer-bottom a {
  display: block;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.brand,
.footer-brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #000;
  background: var(--yellow);
  font-weight: 900;
}

.hero-section,
.trust-band,
.ticker-band,
.sticky-cta,
.age-modal,
.blocked {
  display: none;
}

@media (max-width: 1180px) {
  .table-head {
    display: none;
  }

  .rating-row {
    grid-template-columns: 56px 220px 1fr 180px;
    grid-template-areas:
      "rank brand info score"
      "rank reviews visit visit";
  }

  .rating-row.has-ribbon {
    padding-top: 52px;
  }

  .rank-cell { grid-area: rank; }
  .brand-cell { grid-area: brand; }
  .info-cell { grid-area: info; }
  .review-cell { grid-area: reviews; }
  .score-cell { grid-area: score; }
  .visit-cell { grid-area: visit; }
}

@media (max-width: 760px) {
  .site-shell,
  .site-footer {
    width: 100%;
  }

  .top-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .site-menu {
    gap: 10px 14px;
  }

  .hero-copy {
    padding: 18px;
  }

  .trust-line {
    gap: 10px;
  }

  .rating-row {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "rank brand"
      "rank info"
      "rank reviews"
      "rank score"
      "rank visit";
  }

  .rating-row > div:not(.ribbon) {
    padding: 10px;
  }

  .ribbon {
    position: absolute;
    grid-column: 1 / -1;
    left: 10px;
    top: 8px;
    min-width: 0;
    width: calc(100% - 20px);
    max-width: 360px;
  }

  .ribbon.alt {
    top: auto;
  }

  .cookie-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
