@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #E8E0D4;
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --gold: #D4A853;
  --coral: #E85D4C;
  --text: #2C2416;
  --text-muted: #6B5E4F;
  --white: #FFFFFF;
  --shadow-lg: 0 16px 48px rgba(27, 67, 50, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}

.logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.logo:hover .logo-mark {
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 6px 16px rgba(212, 168, 83, 0.45));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 3px 12px rgba(0, 0, 0, 0.22);
}

.logo-text span {
  background: linear-gradient(135deg, #FFF1C2 0%, #E8C56A 35%, #D4A853 65%, #B8892F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  color: var(--white);
  padding: 8px;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile a {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: 16px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-close {
  background: none;
  color: var(--white);
  padding: 8px;
}

.menu-close svg {
  width: 28px;
  height: 28px;
}

.trust-bar {
  background: rgba(27, 67, 50, 0.95);
  border-bottom: 1px solid rgba(212, 168, 83, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  padding: 10px 0;
}

.trust-bar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.trust-bar a:hover {
  color: var(--white);
}

.noscript-platforms {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
}

.noscript-platforms a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
}

.seo-content {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.seo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--forest);
  margin-bottom: 16px;
  text-align: center;
}

.seo-content p {
  max-width: 800px;
  margin: 0 auto 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

.faq-section {
  padding: 56px 0 80px;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--forest);
  margin-bottom: 28px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.05);
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(27, 67, 50, 0.82) 0%,
      rgba(27, 67, 50, 0.68) 45%,
      rgba(245, 240, 232, 0.92) 100%
    ),
    url('../assets/hero-arena-bg.webp') center center / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 168, 83, 0.18) 0%, transparent 65%),
    linear-gradient(90deg, rgba(13, 40, 24, 0.55) 0%, transparent 30%, transparent 70%, rgba(13, 40, 24, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--coral), var(--forest));
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 83, 0.55);
  border-radius: 50px;
  background: rgba(27, 67, 50, 0.45);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.platforms-section {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.4) 0%, var(--cream) 12%, var(--cream) 100%);
}

.platforms-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url('../assets/pattern-greek.svg') repeat,
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(212, 168, 83, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 75%, rgba(27, 67, 50, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
  opacity: 0.9;
}

.platforms-bg::before,
.platforms-bg::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(212, 168, 83, 0.18);
  border-radius: 50%;
}

.platforms-bg::before {
  top: -80px;
  left: -60px;
}

.platforms-bg::after {
  bottom: -100px;
  right: -40px;
  width: 360px;
  height: 360px;
  border-color: rgba(27, 67, 50, 0.12);
}

.platforms-section .container {
  position: relative;
  z-index: 1;
}

.platforms-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.platforms-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 14px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(27, 67, 50, 0.12);
  backdrop-filter: blur(4px);
}

.platforms-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 14px;
}

.platforms-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.platform-card {
  --accent: var(--forest);
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(27, 67, 50, 0.04),
    0 16px 40px rgba(27, 67, 50, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  animation: cardReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 60%, var(--gold)));
  z-index: 2;
}

.platform-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(27, 67, 50, 0.08),
    0 28px 56px rgba(27, 67, 50, 0.16),
    0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 3;
}

.platform-card:hover .card-shine {
  transform: translateX(120%);
}

.card-accent-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.platform-card:hover .card-accent-glow {
  opacity: 1;
  transform: scale(1.15);
}

.platform-badge {
  position: relative;
  z-index: 4;
  color: var(--white);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 16px;
  overflow: hidden;
}

.platform-badge span {
  position: relative;
  z-index: 1;
}

.platform-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: badgeShimmer 2.5s ease-in-out infinite;
}

@keyframes badgeShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.card-rank {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(27, 67, 50, 0.12);
}

.platform-card:has(.platform-badge) .card-rank {
  top: 48px;
}

.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.card-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-logo-ring {
  position: relative;
  padding: 4px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), var(--accent), var(--forest-light));
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 30%, transparent);
}

.card-logo-wrap {
  width: 108px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  background: var(--white);
}

.card-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), var(--forest-light));
  color: var(--white);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.15),
    0 6px 20px rgba(27, 67, 50, 0.25);
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.score-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.score-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  margin-top: 2px;
}

.card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -4px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 18px;
  height: 18px;
  color: var(--gold);
  filter: drop-shadow(0 1px 2px rgba(212, 168, 83, 0.4));
}

.star.empty {
  color: var(--cream-dark);
  filter: none;
}

.bonus-ticket {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 16px 14px;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 14px;
  border: 1.5px dashed color-mix(in srgb, var(--accent) 40%, var(--gold));
  margin-top: 4px;
}

.bonus-ticket::before,
.bonus-ticket::after {
  content: '';
  position: absolute;
  left: -7px;
  width: 14px;
  height: 14px;
  background: var(--cream);
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--accent) 40%, var(--gold));
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.bonus-ticket::before { top: 28px; }
.bonus-ticket::after { bottom: 28px; }

.bonus-ticket-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coral);
  background: rgba(232, 93, 76, 0.1);
  border-radius: 10px;
}

.bonus-ticket-icon svg {
  width: 20px;
  height: 20px;
}

.bonus-ticket-body {
  flex: 1;
  min-width: 0;
}

.bonus-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.bonus-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  margin-top: auto;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
}

.card-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}

.card-cta:hover::before {
  opacity: 0.15;
}

.card-cta span,
.card-cta svg {
  position: relative;
  z-index: 1;
}

.card-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.card-cta:hover svg {
  transform: translateX(5px);
}

.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 60px;
}

.footer-hgc {
  text-align: center;
  padding: 0 24px 32px;
}

.footer-hgc img {
  margin: 0 auto;
  height: 72px;
  width: auto;
  display: block;
}

.footer-license {
  text-align: center;
  padding: 0 24px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-license h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-license p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-license a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-license a:hover {
  color: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 24px;
  background: rgba(0, 0, 0, 0.2);
}

.footer-badges a,
.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer-badges a:hover {
  opacity: 1;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.footer-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  margin: 32px 0 12px;
}

.footer-content h3:first-child {
  margin-top: 0;
}

.footer-content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.footer-content ul {
  list-style: none;
  margin-top: 12px;
}

.footer-content li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-content a {
  color: var(--gold);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px 24px 32px;
}

.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--forest);
  margin-bottom: 16px;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--forest);
  margin: 32px 0 12px;
}

.content-section ul {
  margin: 16px 0 20px 24px;
  color: var(--text-muted);
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 67, 50, 0.92);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hidden {
  display: none !important;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 12px;
}

.modal p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal p a {
  color: var(--forest-light);
  text-decoration: underline;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--forest);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--forest-light);
}

.btn-secondary {
  padding: 12px 32px;
  background: transparent;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid var(--cream-dark);
}

.btn-secondary:hover {
  background: var(--cream);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  border: 1px solid var(--cream-dark);
}

.cookie-banner h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--forest-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--forest);
  color: var(--white);
}

.cookie-reject {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--cream-dark);
}

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

  .menu-toggle {
    display: block;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platforms-section {
    padding: 60px 0 72px;
  }

  .platforms-header {
    margin-bottom: 36px;
  }

  .card-hero {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .card-score {
    min-width: 64px;
    height: 64px;
  }

  .score-num {
    font-size: 22px;
  }

  .card-name {
    text-align: center;
  }

  .card-rating {
    justify-content: center;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .footer-badges {
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
