@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;700&display=swap');

:root {
  --mjw-bg: #050505;
  --mjw-surface: #0f172a;
  --mjw-border: #1e293b;
  --mjw-primary: #38bdf8; /* Electric Blue */
  --mjw-secondary: #c084fc; /* Purple Neon */
  --mjw-accent: #fb7185; /* Pink/Rose Neon */
  --mjw-glow: rgba(56, 189, 248, 0.5);
  --mjw-text: #f8fafc;
  --mjw-text-muted: #94a3b8;
  --mjw-danger: #ef4444;
  --mjw-font-header: 'Orbitron', sans-serif;
  --mjw-font-body: 'Rajdhani', sans-serif;
  --mjw-shadow: 0 0 20px rgba(0,0,0,0.8);
  --mjw-radius: 4px; /* Harder arcade edges */
}

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

html {
  scroll-behavior: smooth;
}

body.mjw-body {
  font-family: var(--mjw-font-body);
  color: var(--mjw-text);
  background-color: var(--mjw-bg);
  background-image: 
    linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.95)),
    repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(56, 189, 248, 0.05) 1px, rgba(56, 189, 248, 0.05) 2px),
    repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(56, 189, 248, 0.05) 1px, rgba(56, 189, 248, 0.05) 2px);
  background-size: 100% 100%, 100% 4px, 4px 100%;
  line-height: 1.6;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

h1, h2, h3, h4 {
  font-family: var(--mjw-font-header);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mjw-primary);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--mjw-glow);
}

a {
  color: var(--mjw-secondary);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--mjw-primary);
  text-shadow: 0 0 8px var(--mjw-glow);
}

/* Header */
.mjw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 2px solid var(--mjw-primary);
  box-shadow: 0 0 15px var(--mjw-glow);
}

.mjw-head-inner {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.mjw-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mjw-logo {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 5px var(--mjw-primary));
}

.mjw-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}

.mjw-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.mjw-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  transition: 0.3s;
}

.mjw-nav a.is-active,
.mjw-nav a:hover {
  border-color: var(--mjw-primary);
  background: rgba(56, 189, 248, 0.1);
  box-shadow: inset 0 0 10px var(--mjw-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--mjw-primary);
  padding: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 4px;
  background: var(--mjw-primary);
}

/* Hero */
.mjw-hero {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.15), transparent 70%);
}

.mjw-hero h1 {
  font-size: clamp(2.5rem, 10vw, 5rem);
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px var(--mjw-primary), 0 0 40px var(--mjw-secondary);
}

.mjw-hero p {
  font-size: 1.4rem;
  color: var(--mjw-primary);
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-inline: auto;
}

/* Compliance Badge */
.compliance-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--mjw-accent);
  color: var(--mjw-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  background: rgba(251, 113, 133, 0.1);
  box-shadow: 0 0 10px rgba(251, 113, 133, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 900;
  font-family: var(--mjw-font-header);
  text-transform: uppercase;
  border: 2px solid var(--mjw-primary);
  background: transparent;
  color: var(--mjw-primary);
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--mjw-primary);
  color: var(--mjw-bg);
  box-shadow: 0 0 15px var(--mjw-glow);
}

.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 30px #fff;
}

.btn-secondary {
  border-color: var(--mjw-secondary);
  color: var(--mjw-secondary);
}

.btn-secondary:hover {
  background: var(--mjw-secondary);
  color: #000;
  box-shadow: 0 0 20px var(--mjw-secondary);
}

/* Layout */
.mjw-container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.mjw-section {
  padding: 6rem 0;
}

.mjw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mjw-card {
  background: var(--mjw-surface);
  border: 1px solid var(--mjw-border);
  padding: 2.5rem;
  position: relative;
}

.mjw-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--mjw-primary);
  border-left: 2px solid var(--mjw-primary);
}

.mjw-card:hover {
  border-color: var(--mjw-primary);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

/* Legal Sections */
.mjw-legal {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.5);
  padding: 4rem;
  border: 1px solid var(--mjw-border);
}

.mjw-legal h2 {
  color: #fff;
  border-bottom: 2px solid var(--mjw-primary);
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Reviews Summary */
.mjw-rating-summary {
  background: var(--mjw-surface);
  padding: 3rem;
  border: 1px solid var(--mjw-primary);
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 0 20px var(--mjw-glow);
}

.mjw-rating-number {
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--mjw-font-header);
}

.mjw-bar-outer {
  width: 100%;
  height: 10px;
  background: #000;
  border: 1px solid var(--mjw-border);
}

.mjw-bar-inner {
  height: 100%;
  background: var(--mjw-primary);
  box-shadow: 0 0 10px var(--mjw-primary);
}

/* Footer */
.mjw-footer {
  background: #000;
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--mjw-secondary);
}

.mjw-footer-grid {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

.mjw-links {
  list-style: none;
}

.mjw-links li {
  margin-bottom: 1rem;
}

.mjw-footer-bottom {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mjw-border);
  color: var(--mjw-text-muted);
}

/* Popups */
.age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.age-popup.show {
  visibility: visible;
  opacity: 1;
}

.age-popup-content {
  background: var(--mjw-surface);
  padding: 4rem;
  text-align: center;
  max-width: 600px;
  width: 90%;
  border: 2px solid var(--mjw-primary);
  box-shadow: 0 0 40px var(--mjw-primary);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--mjw-surface);
  border-top: 2px solid var(--mjw-primary);
  padding: 2rem;
  transform: translateY(100%);
  transition: 0.5s;
  z-index: 900;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 900px) {
  .mjw-nav {
    display: none;
  }
  .mjw-nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--mjw-surface);
    padding: 2rem;
    border-bottom: 2px solid var(--mjw-primary);
  }
  .mjw-nav ul {
    flex-direction: column;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .mjw-rating-summary {
    flex-direction: column;
    gap: 2rem;
  }
}
