/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --fg: #E6F7FF;
  --muted: #A3BFD9;
  --primary: #D72638;
  --accent-red: #D72638;
  --card-bg: #1a1a1a;
  --border: #262626;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  animation: fadeIn 1s ease-out forwards;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3) 50%, #000);
}

/* Logo */
.logo-wrapper {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 10;
  animation: fadeInUp 0.8s ease-out forwards;
}

.logo {
  height: 4rem;
  width: auto;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 1rem 5%;
}

.hero-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  max-width: 48rem;
  line-height: 1.4;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.hero-highlight {
  color: var(--accent-red);
}

/* CTA */
.cta-wrapper {
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.btn-neon {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 3rem;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.btn-neon:hover {
  box-shadow: 0 0 25px rgba(215,38,56,0.7), 0 0 60px rgba(215,38,56,0.4), 0 0 100px rgba(215,38,56,0.2);
  transform: scale(1.05);
}

.btn-neon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(215,38,56,0.1) 50%, transparent 60%);
  animation: shimmer 3s infinite;
}

/* Platforms */
.platforms {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platform-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.platform-divider {
  width: 1px;
  height: 1.25rem;
  background: var(--border);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-link {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-sep {
  color: var(--border);
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  max-width: 32rem;
  width: calc(100% - 2rem);
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.modal-close:hover {
  color: var(--fg);
}

.modal-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body p:last-child {
  margin-bottom: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(215,38,56,0.4), 0 0 30px rgba(215,38,56,0.2); }
  50% { box-shadow: 0 0 20px rgba(215,38,56,0.6), 0 0 50px rgba(215,38,56,0.3), 0 0 80px rgba(215,38,56,0.1); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .logo { height: 4rem; }
}
