@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg-color: #050505;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-1: #00f0ff; /* Neon Cyan */
  --accent-2: #ff0055; /* Neon Pink */
  --accent-3: #7000ff; /* Purple */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

/* Background Gradients */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-3) 0%, rgba(0,0,0,0) 70%);
  top: -200px;
  left: -200px;
  opacity: 0.3;
  filter: blur(80px);
  z-index: -1;
  animation: pulse 10s infinite alternate;
}

.bg-glow-2 {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-1) 0%, rgba(0,0,0,0) 70%);
  bottom: -100px;
  right: -100px;
  opacity: 0.2;
  filter: blur(80px);
  z-index: -1;
  animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

/* Typography */
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  background: linear-gradient(to right, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
header {
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(15px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-2);
}

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

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

nav a:hover {
  color: var(--accent-1);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-1);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(45deg, var(--accent-2), var(--accent-3));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
}

.btn-discord {
  background: #5865F2; /* Discord Color */
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  padding: 1rem 3rem;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 span {
  background: linear-gradient(to right, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* Games Section */
.games {
  padding: 5rem 5%;
}

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

.game-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  transition: left 0.5s ease;
}

.game-card:hover::before {
  left: 100%;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-1);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.game-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom right, var(--accent-1), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.game-card p {
  color: var(--text-muted);
}

/* Discord Section */
.discord-section {
  padding: 8rem 5%;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(88, 101, 242, 0.1), transparent);
}

.discord-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 4rem 2rem;
  border-radius: 30px;
  backdrop-filter: blur(15px);
}

.discord-content h2 {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
  margin-bottom: 1rem;
}

.discord-content p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* Feet Upload Section */
.feet-section {
  padding: 5rem 5%;
  margin-bottom: 5rem;
}

.vault-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--accent-2);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(255, 0, 85, 0.1);
  position: relative;
}

.vault-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vault-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-2);
}

.vault-container p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 3rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.upload-area:hover {
  border-color: var(--accent-2);
  background: rgba(255, 0, 85, 0.05);
}

.upload-area input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-content i {
  font-size: 2.5rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

#upload-status {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--accent-1);
  min-height: 24px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  background: rgba(5, 5, 5, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  nav ul { display: none; /* simple mobile handling */ }
  .discord-content { padding: 2rem 1rem; }
}
