:root {
  --neon-blue: #00f3ff;
  --neon-pink: #bc13fe;
  --neon-green: #0aff0a;
  --neon-orange: #ff9e00;
  --discord-color: #5865F2;
  --bg-dark: #050505;
  --card-bg: rgba(255, 255, 255, 0.05);
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 20%);
  color: #fff;
  padding-bottom: 0; /* Reset for new footer */
}

h1, h2, h3, h4, h5, .arcade-font {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
  padding: 120px 0 80px 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, var(--bg-dark) 100%);
  position: relative;
}

.hero-title {
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(to right, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

/* Game Cards */
.game-card {
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.3);
}

/* Specific Game Themes */
.theme-zombie { border-top: 5px solid #ff0000; }
.theme-zombie .icon-box { color: #ff0000; text-shadow: 0 0 15px #ff0000; }
.theme-zombie:hover { box-shadow: 0 0 30px rgba(255, 0, 0, 0.2); }
.zombie-font { font-family: 'Creepster', cursive; letter-spacing: 2px; }

.theme-river { border-top: 5px solid var(--neon-blue); }
.theme-river .icon-box { color: var(--neon-blue); text-shadow: 0 0 15px var(--neon-blue); }
.theme-river:hover { box-shadow: 0 0 30px rgba(0, 243, 255, 0.2); }

.theme-canyon { border-top: 5px solid var(--neon-orange); }
.theme-canyon .icon-box { color: var(--neon-orange); text-shadow: 0 0 15px var(--neon-orange); }
.theme-canyon:hover { box-shadow: 0 0 30px rgba(255, 158, 0, 0.2); }

.play-btn {
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 30px;
  transition: 0.3s;
}

/* Features Section */
.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Community & Analytics Cards */
.community-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
}
.community-card:hover { transform: scale(1.03); }

.discord-card { background: linear-gradient(145deg, rgba(88, 101, 242, 0.2), rgba(88, 101, 242, 0.05)); border-color: var(--discord-color); }
.analytics-card { background: linear-gradient(145deg, rgba(10, 255, 10, 0.2), rgba(10, 255, 10, 0.05)); border-color: var(--neon-green); }


/* Forms & misc */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.form-control {
  background: rgba(0,0,0,0.5);
  border: 1px solid #444;
  color: #fff;
}
.form-control:focus {
  background: rgba(0,0,0,0.8);
  color: #fff;
  box-shadow: 0 0 10px var(--neon-blue);
  border-color: var(--neon-blue);
}

/* Support Banner */
.support-banner {
    background: linear-gradient(90deg, #ffc107, #ffdb4d);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

a { text-decoration: none; }
