@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Rajdhani:wght@400;700&display=swap');

body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(145deg, #0d0d2b, #000010);
  color: #e0e6f1;
  text-align: center;
  padding: 2rem 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero {
  background: rgba(17, 25, 40, 0.85);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 183, 255, 0.5);
  border-radius: 20px;
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
  animation: fadeIn 1s ease-in-out forwards;
}

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

.logo {
  max-width: 220px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #00c3ffbb;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 0 30px #00eaffcc;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  color: #00bfff;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px #00bfffaa;
}

.hero h1 span {
  color: #fff;
  text-shadow: 0 0 20px #00eaff;
}

.hero p {
  font-size: 1.3rem;
  color: #a0aec0;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group label {
  color: #00bfff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
  text-shadow: 0 0 10px #00bfff88;
}

input[type="email"], input[type="text"] {
  padding: 1rem 1.2rem;
  width: 100%;
  max-width: 320px;
  border: 2px solid #00bfff88;
  border-radius: 10px;
  font-size: 1.1rem;
  outline: none;
  background: #0e1a2b;
  color: #fff;
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
}

input[type="email"]:focus, input[type="text"]:focus {
  border-color: #00eaff;
  box-shadow: 0 0 15px #00eaffaa;
  transform: scale(1.02);
}

/* Optional name input specific styles */
input[type="text"] {
  border-style: dashed;
  background: rgba(14, 26, 43, 0.7);
}

input[type="text"]::placeholder {
  color: #a0aec0;
  font-style: italic;
}

input[type="text"]:focus {
  border-style: solid;
  background: #0e1a2b;
}

.optional-tag {
  display: inline-block;
  background: rgba(0, 191, 255, 0.2);
  color: #00bfff;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-left: 8px;
  font-style: italic;
}

button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00bfff, #007acc);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3);
  transition: all 0.3s ease;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 10px;
}

button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px #00bfffcc;
  background: linear-gradient(135deg, #00eaff, #0099ff);
}

#successMessage {
  margin-top: 1rem;
  color: #00ffb3;
  font-weight: 700;
  text-shadow: 0 0 10px #00ffb399;
  font-size: 1.1rem;
}

.hidden {
  display: none;
}

.share {
  margin-top: 4rem;
}

.share h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #00c3ff;
  text-shadow: 0 0 15px #00bfffbb;
  font-family: 'Orbitron', sans-serif;
}

.social-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-buttons a {
  padding: 0.9rem 1.5rem;
  background: #0d1a2b;
  border: 2px solid #00bfff88;
  border-radius: 12px;
  text-decoration: none;
  color: #e0e6f1;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 5px #00bfff66;
}

.social-buttons a:hover {
  background: #00bfff;
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 0 20px #00bfffcc;
}

/* ===== Games Section ===== */
.games {
  margin-top: 4rem;
}

.games h2 {
  font-size: 2rem;
  color: #00c3ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px #00bfffbb;
  font-family: 'Orbitron', sans-serif;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.game-card {
  background: rgba(20, 30, 45, 0.85);
  border: 2px solid #00bfff44;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 15px #00bfff22;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px #00bfffcc;
}

.game-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card p {
  margin: 0;
  padding: 1rem;
  background: #0e1a2b;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  user-select: none;
}

.steam-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #00bfff;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.steam-link:hover {
  background: #00eaff;
  transform: scale(1.05);
  box-shadow: 0 0 15px #00bfffcc;
}

/* ===== Schedule Section ===== */
.schedule {
  margin: 4rem auto;
  max-width: 800px;
  padding: 0 1rem;
}

.schedule h2 {
  font-size: 2.5rem;
  color: #00c3ff;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px #00bfffbb;
  font-family: 'Orbitron', sans-serif;
}

.schedule-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: rgba(17, 25, 40, 0.85);
  border-radius: 18px;
  padding: 2rem;
  border: 2px solid #00bfff88;
  box-shadow: 0 0 25px #00bfff55;
}

.schedule-day {
  text-align: center;
  padding: 1.5rem;
  background: rgba(20, 30, 45, 0.85);
  border-radius: 12px;
  border: 2px solid #00bfff44;
  transition: all 0.3s ease;
}

.schedule-day:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #00bfffcc;
  border-color: #00bfff88;
}

.schedule-day h3 {
  color: #00bfff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
}

.schedule-day p {
  color: #a0aec0;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.game-tag {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff, #007acc);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .schedule-box {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .schedule h2 {
    font-size: 2rem;
  }
  
  form {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  input[type="email"], input[type="text"] {
    max-width: 100%;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
}