/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --bg:       #0a0a0c;
  --surface:  #111115;
  --border:   #1e1e26;
  --accent:   #e8ff47;
  --accent2:  #ff6b35;
  --text:     #e8e8f0;
  --muted:    #6b6b80;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --radius: 4px;
  --max: 1200px;
  --hero-logo-margin-top: 1%;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── GRAIN OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
}

/* ─── NAV ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85 !important; color: var(--bg) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--accent);
  transition: all 0.3s ease;
  display: block;
  border-radius: 1px;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(10,10,12,0.95);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(12px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile a {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a.active {
  color: var(--accent);
  background: rgba(232,255,71,0.05);
}
.nav-mobile .nav-cta {
  color: var(--bg) !important;
  background: var(--accent);
  border-radius: 0;
  margin: 1rem 2.5rem;
  justify-content: center;
}

/* ─── PAGES (tab system) ─────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 64px 2.5rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex; align-items: flex-start;
  position: relative;
  max-width: 1200px;
}
.hero-text {
  flex: 1; min-width: 0;
}
.hero-logo-wrapper {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  margin-top: var(--hero-logo-margin-top);
}
.hero-logo {
  max-width: clamp(200px, 50vw, 718px); height: auto; display: block;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,255,71,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(255,107,53,0.08) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0c 0%, #0f0f14 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,255,71,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,255,71,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 100%);
}
/* .hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  position: relative;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2.5rem; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
} */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 14rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 2rem;
}
.hero-title span { color: var(--accent2); }
.hero-sub {
  width: 760px;
  max-width: 70vw;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  position: relative;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; position: relative; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); transform: translateY(-1px); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ─── SECTION BASE ───────────────────────────────────── */
.section { padding: 6rem 2.5rem; max-width: var(--max); margin: 0 auto; }
.section-tag {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before {
  content: ''; width: 1.5rem; height: 1px; background: var(--accent); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.section-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 0 2.5rem;
}

/* ─── BLANK PAGE STATE ───────────────────────────────── */
.blank-page {
  margin-top: 3rem;
  padding: 5rem 2rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; text-align: center;
  color: var(--muted);
}
.blank-page svg { opacity: 0.25; color: var(--muted); }
.blank-page p {
  font-size: 1rem; font-weight: 300;
}
.blank-page span {
  font-size: 0.78rem; opacity: 0.6;
}
.blank-page code {
  font-family: monospace;
  color: var(--accent);
  background: rgba(232,255,71,0.06);
  padding: 0.1em 0.4em;
  border-radius: 2px;
}

/* ─── GAMES / FEATURED ───────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.game-card {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: pointer;
}
.game-card:hover { background: #14141a; }
.game-card-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
}
.game-card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card-thumb img { transform: scale(1.04); }
.game-card-thumb .thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border);
  background: linear-gradient(135deg, var(--surface), var(--bg));
}
.game-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: rgba(232,255,71,0.08);
  padding: 0.25rem 0.65rem; border-radius: 2px;
  margin-bottom: 0.8rem;
}
.game-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.game-card p { color: var(--muted); font-size: 0.9rem; font-weight: 300; line-height: 1.7; }
.game-card-arrow {
  position: absolute; top: 2.5rem; right: 2.5rem;
  color: var(--muted); font-size: 1.2rem;
  transition: color 0.2s, transform 0.2s;
}
.game-card:hover .game-card-arrow { color: var(--accent); transform: translate(3px,-3px); }

/* ─── NEWS ───────────────────────────────────────────── */
.news-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: pointer;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover .news-title { color: var(--accent); }
.news-date {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--muted); padding-top: 0.25rem;
}
.news-cat {
  display: inline-block;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent2); background: rgba(255,107,53,0.1);
  padding: 0.2rem 0.55rem; border-radius: 2px;
  margin-bottom: 0.5rem;
}
.news-title {
  font-family: var(--font-display);
  font-size: 1.3rem; letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.news-excerpt { color: var(--muted); font-size: 0.88rem; font-weight: 300; }
.news-arrow { color: var(--muted); align-self: center; font-size: 1rem; }

/* ─── MEDIA / SCREENSHOTS ────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.media-item {
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}
.media-item:hover { border-color: var(--accent); }
.media-item img { width: 100%; height: 100%; object-fit: cover; }
.media-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  color: var(--muted);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.media-placeholder svg { opacity: 0.3; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,12,0.4);
  transition: background 0.2s;
}
.media-item:hover .video-overlay { background: rgba(10,10,12,0.2); }
.play-btn {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.media-item:hover .play-btn { transform: scale(1.1); }
.play-btn svg { margin-left: 4px; }

/* ─── ABOUT ──────────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  margin-top: 3rem;
}
.about-text p {
  color: var(--muted); font-weight: 300; line-height: 1.85;
  margin-bottom: 1.2rem; font-size: 1rem;
}
.about-text p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.stat-box { background: var(--surface); padding: 2rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem; letter-spacing: 0.02em;
  color: var(--accent); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--accent); }
.team-avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--border), var(--bg));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; color: var(--border);
}
.team-info { padding: 1rem 1.2rem; }
.team-name { font-weight: 500; margin-bottom: 0.2rem; }
.team-role { font-size: 0.78rem; color: var(--muted); }

/* ─── PRIVACY ────────────────────────────────────────── */
.prose-content {
  max-width: 720px; margin: 3rem auto 0;
  color: var(--muted); font-weight: 300; line-height: 1.85;
}
.prose-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--text);
  margin-top: 2.5rem; margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.prose-content p { margin-bottom: 1rem; }
.prose-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-content ul li { list-style: disc; margin-bottom: 0.4rem; font-size: 0.95rem; }
.prose-meta {
  font-size: 0.78rem; letter-spacing: 0.06em;
  color: var(--accent); margin-bottom: 2rem;
}

/* ─── CONTACT ────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  margin-top: 3rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.contact-info p { color: var(--muted); font-weight: 300; font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem; color: var(--muted);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { flex-shrink: 0; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { min-height: 140px; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.08em;
  color: var(--accent);
}
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.78rem; color: var(--muted); }

/* ─── VIDEO MODAL ────────────────────────────────────── */
.modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.9);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.modal.open { display: flex; }
.modal-inner { position: relative; width: 100%; max-width: 900px; }
.modal-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: var(--muted);
  font-size: 1.5rem; cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-embed {
  aspect-ratio: 16/9; width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.modal-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.7s ease both; }
.hero-title   { animation: fadeUp 0.7s ease 0.1s both; }
.hero-sub     { animation: fadeUp 0.7s ease 0.2s both; }
.hero-actions { animation: fadeUp 0.7s ease 0.3s both; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  #nav {
    padding: 0 1.5rem;
  }
  .nav-logo {
    font-size: 1.4rem;
  }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  
  #hero {
    padding: 64px 1.5rem 2rem;
    align-items: center;
    min-height: auto;
  }
  .hero-content {
    display: flex;
    align-items: flex-start;
    width: 100%;
  }
  .hero-text {
    text-align: left;
    width: 65%;
    flex: 0 0 65%;
  }
  .hero-logo-wrapper {
    width: 35%;
    flex: 0 0 35%;
    min-width: 0;
    justify-content: center;
    margin-top: 0.4rem;
    transform: translateX(-110px);
  }
  .hero-logo {
    height: calc(clamp(2.5rem, 10vw, 4rem) * 2.7);
    width: auto;
    max-width: none !important;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    width: 65%;
  }
  .hero-sub {
    width: calc(100vw - 3rem);
    max-width: none;
    margin: 0 0 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: auto;
    justify-content: center;
  }
  .hero-actions button {
    width: auto;
    justify-content: center;
  }
  .hero-scroll {
    display: none;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  .section-divider {
    margin: 0 1.5rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .about-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .news-arrow { display: none; }
  .news-date {
    order: 1;
  }
  .news-item > div:nth-child(2) {
    order: 2;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
  
  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  #nav {
    padding: 0 1rem;
    height: 56px;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-mobile {
    top: 56px;
    max-height: calc(100vh - 56px);
  }
  .nav-mobile a {
    padding: 0.85rem 1.5rem;
    font-size: 0.78rem;
  }
  .nav-mobile .nav-cta {
    margin: 0.75rem 1rem;
    padding: 0.5rem 1rem;
  }
  
  #hero {
    padding: 56px 1rem 2rem;
    min-height: auto;
    padding-bottom: 2rem;
  }
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
    margin-bottom: 1rem;
  }
  .hero-sub {
    width: calc(100vw - 2rem);
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .hero-logo {
    height: calc(clamp(1.8rem, 8vw, 2.8rem) * 2.7);
    width: auto;
    max-width: none !important;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  .section-divider {
    margin: 0 1rem;
  }
  
  .btn-primary, .btn-secondary {
    font-size: 0.75rem;
    padding: 0.7rem 1.5rem;
  }
  
  .blank-page {
    padding: 3rem 1rem;
  }
  
  .news-item {
    padding: 1rem 0;
  }
  
  footer {
    padding: 1.5rem 1rem;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-links {
    gap: 1rem;
    flex-direction: column;
  }
}
