@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --hyper-red: #dc143c;
  --electric-blue: #1e90ff;
  --chrome-silver: #c0c0c0;
  --deep-black: #0a0a0a;
  --slate-dark: #1c1c1c;
  --bright-white: #ffffff;
  --muted-gray: #888888;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--deep-black);
  color: var(--bright-white);
  line-height: 1.7;
  min-height: 100vh;
}

.hyper-header {
  background: linear-gradient(180deg, var(--slate-dark) 0%, var(--deep-black) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--hyper-red);
}

.hyper-header-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hyper-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.hyper-brand-icon {
  width: 45px;
  height: 45px;
}

.hyper-brand-text {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--bright-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hyper-nav {
  display: flex;
  gap: 2.5rem;
}

.hyper-nav a {
  color: var(--chrome-silver);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.hyper-nav a:hover {
  color: var(--hyper-red);
}

.hyper-burger {
  display: none;
  background: none;
  border: 2px solid var(--hyper-red);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
}

.hyper-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hyper-red);
  margin: 5px 0;
  transition: all 0.3s;
}

.hyper-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--slate-dark);
  padding: 1rem 2rem;
  border-bottom: 2px solid var(--hyper-red);
}

.hyper-mobile-nav.visible {
  display: flex;
}

.hyper-mobile-nav a {
  color: var(--bright-white);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(220, 20, 60, 0.3);
  font-weight: 500;
  text-transform: uppercase;
}

.hyper-hero {
  padding: 6rem 2rem;
  background: 
    linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
    linear-gradient(225deg, rgba(30, 144, 255, 0.1) 0%, transparent 50%);
}

.hyper-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.hyper-hero-text h1 {
  font-family: 'Teko', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hyper-hero-text h1 span {
  color: var(--hyper-red);
}

.hyper-hero-text p {
  font-size: 1.15rem;
  color: var(--muted-gray);
  margin-bottom: 2rem;
}

.hyper-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hyper-badge {
  background: var(--slate-dark);
  border: 1px solid var(--hyper-red);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hyper-hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hyper-hero-graphic .graphic-emoji {
  font-size: 12rem;
  filter: drop-shadow(0 0 40px rgba(220, 20, 60, 0.5));
}

.hyper-game-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hyper-game-section h2 {
  font-family: 'Teko', sans-serif;
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: var(--hyper-red);
}

.hyper-game-container {
  background: #000;
  border: 3px solid var(--chrome-silver);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(220, 20, 60, 0.3);
}

.hyper-game-container iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: none;
}

.hyper-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hyper-feature {
  background: var(--slate-dark);
  border-left: 3px solid var(--hyper-red);
  padding: 2rem;
  transition: all 0.3s;
}

.hyper-feature:hover {
  background: #252525;
  transform: translateX(5px);
}

.hyper-feature .feat-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hyper-feature h3 {
  font-family: 'Teko', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  color: var(--bright-white);
}

.hyper-feature p {
  color: var(--muted-gray);
  font-size: 0.9rem;
}

.hyper-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hyper-content h1 {
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: var(--hyper-red);
}

.hyper-content h2 {
  font-family: 'Teko', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--electric-blue);
  margin: 2rem 0 1rem;
}

.hyper-content p {
  color: var(--muted-gray);
  margin-bottom: 1rem;
}

.hyper-content ul {
  color: var(--muted-gray);
  margin: 1rem 0 1rem 2rem;
}

.hyper-content li {
  margin-bottom: 0.5rem;
}

.hyper-tip {
  background: var(--slate-dark);
  border-left: 3px solid var(--electric-blue);
  padding: 1.5rem;
  margin-top: 2rem;
}

.hyper-footer {
  background: var(--slate-dark);
  border-top: 2px solid var(--hyper-red);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.hyper-footer p {
  color: var(--muted-gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hyper-footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hyper-footer-links a {
  color: var(--hyper-red);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hyper-footer-links a:hover {
  color: var(--bright-white);
}

.hyper-age-screen {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.hyper-age-screen.gone {
  display: none;
}

.hyper-age-box {
  background: var(--slate-dark);
  border: 3px solid var(--hyper-red);
  padding: 3rem;
  max-width: 450px;
  text-align: center;
  margin: 1rem;
}

.hyper-age-box h2 {
  font-family: 'Teko', sans-serif;
  color: var(--hyper-red);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hyper-age-box p {
  color: var(--muted-gray);
  margin-bottom: 2rem;
}

.hyper-age-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hyper-btn-yes, .hyper-btn-no {
  padding: 1rem 2.5rem;
  font-family: 'Teko', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.hyper-btn-yes {
  background: var(--hyper-red);
  color: var(--bright-white);
}

.hyper-btn-yes:hover {
  background: #ff1a4a;
}

.hyper-btn-no {
  background: transparent;
  border: 2px solid var(--muted-gray);
  color: var(--muted-gray);
}

.hyper-btn-no:hover {
  border-color: var(--electric-blue);
  color: var(--electric-blue);
}

@media (max-width: 1024px) {
  .hyper-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hyper-badges {
    justify-content: center;
  }
  
  .hyper-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hyper-nav {
    display: none;
  }
  
  .hyper-burger {
    display: block;
  }
  
  .hyper-hero-text h1 {
    font-size: 2.8rem;
  }
  
  .hyper-hero-graphic .graphic-emoji {
    font-size: 7rem;
  }
  
  .hyper-features {
    grid-template-columns: 1fr;
  }
  
  .hyper-game-container iframe {
    height: 450px;
  }
  
  .hyper-age-btns {
    flex-direction: column;
  }
}
