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

* {
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, #ff6600, #cc0000);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}

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

header {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  text-shadow: 0 0 10px #ff6600;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ff6600;
  animation: pulseLogo 2s infinite;
  margin-bottom: 10px;
}

@keyframes pulseLogo {
  0% { transform: scale(1); text-shadow: 0 0 5px #ff6600; }
  50% { transform: scale(1.05); text-shadow: 0 0 15px #ff3300; }
  100% { transform: scale(1); text-shadow: 0 0 5px #ff6600; }
}

/* Navbar */
.navbar {
  background-color: rgba(0, 0, 0, 0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px;
}

.menu-icon {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
  padding: 10px;
}

#menu-toggle {
  display: none;
}

.menu {
  text-align: center;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: inline-block;
  transition: background 0.3s ease;
}

.menu a:hover {
  background-color: #ff3300;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 600px) {
  .menu {
    display: none;
    flex-direction: column;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }

  .menu a {
    padding: 15px;
    border-bottom: 1px solid #444;
  }
}

/* Carduri */
.card {
  max-width: 900px;
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.01);
}

/* Membri echipă */
.team-member {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #ff6600;
  border-radius: 8px;
}

/* Buton Discord */
.action-btn {
  background-color: #5865F2;
  color: white;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #5865F2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.action-btn:hover {
  background-color: #404ecb;
  transform: scale(1.05);
  box-shadow: 0 0 20px #404ecb;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
  border-top: 2px solid #ff6600;
}

/* Liste */
ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Butoane navigare */
.nav-btn {
  background-color: #ff6600;
  color: white;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav-btn:hover {
  background-color: #ff3300;
  transform: scale(1.05);
}

/* Player audio personalizat */
.audio-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.audio-controls button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.audio-controls button:hover {
  background-color: #ff3300;
}

.audio-controls input[type="range"] {
  width: 150px;
  accent-color: #ff6600;
}