/* Base reset and typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000;
  --text: #fff;
  --muted: #ccc;
  --grad-1: #FF00CC;
  --grad-2: #AA00FF;
  --grad-3: #00BFFF;
  --shadow-pink: rgba(255, 0, 204, 0.4);
  --shadow-cyan: rgba(0, 191, 255, 0.3);
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shared effects */
.gradient-text {
  background: linear-gradient(45deg, var(--grad-1), var(--grad-2), var(--grad-3));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Section title */
.section-title {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -1px;
  line-height: 1.2;
}