/* CSS Reset and Variables */
:root {
  /* Colors */
  --surface: #131313;
  --surface-container: #1A1A1A; /* From specs: #1A1A1A for containers */
  --on-surface: #e2e2e2;
  --on-surface-variant: #d0c6ab;
  --primary: #FFD700; /* From specs: Primary (Vibrant Yellow) */
  --on-primary: #000000;
  --secondary: #FFFFFF;
  --background: #000000; /* From specs: Deep Black */
  
  /* Typography Variables */
  --font-display: 'Anybody', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;
  --font-util: 'Space Grotesk', sans-serif;
  
  /* Spacing */
  --unit: 8px;
  --gutter: 16px;
}

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

body {
  background-color: var(--background);
  color: var(--on-surface);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
  /* subtle pattern/texture if needed, but keeping it clean for now */
}

/* Background Glow Effect simulating a stage spotlight */
.background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px; /* Rhythmic spacing */
}

/* Logo Container with tonal layer and yellow outer glow */
.logo-container {
  background-color: var(--surface-container);
  padding: 16px; /* Reduced from 32px for smaller border */
  border-radius: 8px; /* Slightly approachable feel */
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 40px rgba(255, 215, 0, 0.15); /* Yellow glow */
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px; /* Increased to make logo larger */
}

.logo {
  max-width: 100%;
  height: auto;
  border-radius: 0px; /* Sharp media */
  mix-blend-mode: screen; /* Helps if logo background isn't perfectly black */
}

/* Typography */
.title {
  font-family: var(--font-display);
  font-size: 72px; /* display-xl */
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  font-style: italic;
  color: var(--primary);
  text-transform: uppercase;
  text-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3); /* Neon glow on text */
  margin-bottom: 8px;
}

.description {
  font-size: 18px; /* body-lg */
  font-weight: 400;
  line-height: 1.6;
  color: var(--on-surface);
  max-width: 600px;
  margin: 0 auto;
}

.subtitle {
  font-size: 16px; /* body-md */
  font-weight: 400;
  line-height: 1.5;
  color: var(--on-surface-variant);
  margin-top: 16px;
}

/* Button Component */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-util);
  font-size: 14px; /* label-bold */
  font-weight: 700;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 4px; /* Sharp modern appearance */
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3); /* Yellow outer glow */
  margin-top: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 30px rgba(255, 215, 0, 0.5); /* Increase glow on hover */
}

.btn-primary i {
  font-size: 20px;
}

/* Responsive Grid/Layout adjustments */
@media (max-width: 768px) {
  .title {
    font-size: 48px; /* headline-lg */
  }
  
  .description {
    font-size: 16px;
  }
  
  .logo-container {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 40px;
  }
  
  .logo-container {
    max-width: 240px;
    padding: 12px;
  }
  
  .description {
    font-size: 14px;
    padding: 0 16px;
  }
}

/* Cursor Animation */
body {
  cursor: default;
}

.cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
}

.cursor-glow {
  position: fixed;
  pointer-events: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 20px 8px rgba(255, 215, 0, 0.8);
  transform: translate(-50%, -50%);
  z-index: 9999;
}
