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

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0c0c0c;
  color: #f0e6d2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  background: linear-gradient(to right, #1a0000, #330000);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #b8860b;
  position: relative;
  z-index: 10;
  box-shadow: 0 6px 30px rgba(184, 134, 11, 0.8);
}

.logo {
  color: #b8860b;
  font-size: 1.8rem;
  font-weight: bold;
}

nav a {
  color: #f0e6d2;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #b8860b;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ff0000;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  color: #f0e6d2;
  max-width: 700px;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #b8860b;
  color: black;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #daa520;
}

footer {
  background-color: #1a0000;
  text-align: center;
  padding: 1rem;
  color: #888;
  border-top: 1px solid #b8860b;
  box-shadow: 0 6px 30px rgba(184, 134, 11, 0.8);
  position: relative;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem; 
    padding: 0.8rem 0;
  }

  nav a {
    font-size: 1rem;
    padding: 0.2rem 0; 
  }
}

.about-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1a0000;
  border: 1px solid #b8860b;
  border-radius: 10px;
}

.about-section h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #ff0000;
  margin-bottom: 2rem;
}

.about-block {
  margin-bottom: 2.5rem;
}

.about-block h2 {
  font-size: 1.8rem;
  color: #b8860b;
  margin-bottom: 1rem;
}

.about-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0e6d2;
}

.about-block ul {
  padding-left: 1.5rem;
  color: #f0e6d2;
}

.about-block ul li {
  margin-bottom: 0.7rem;
  list-style: square;
}

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

.team-member {
  background-color: #330000;
  border: 1px solid #b8860b;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  color: #f0e6d2;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 150px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #b8860b;
  margin-bottom: 1rem;
  border-radius: 12px; 
  border: 2px solid #b8860b;
  box-shadow: 0 0 12px #b8860b, 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 16px #b8860b, 0 0 30px rgba(255, 0, 0, 0.6);
}


.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ff0000;
}

.team-member p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .about-section {
    padding: 1rem;
    margin: 2rem 1rem;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-block h2 {
    font-size: 1.4rem;
  }

  .about-block p,
  .about-block ul li {
    font-size: 1rem;
  }
}

.showcase {
  padding: 4rem 2rem;
  background-color: #0c0c0c;
  border-top: 1px solid #b8860b;
}

.showcase h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #ff0000;
  margin-bottom: 2rem;
}

.genre-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.genre-filter button {
  padding: 0.6rem 1.2rem;
  background-color: #1a0000;
  border: 1px solid #b8860b;
  color: #f0e6d2;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.genre-filter button:hover {
  background-color: #b8860b;
  color: black;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.game-card {
  background-color: #1a0000;
  border: 1px solid #b8860b;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; 
  animation: fadeUp 0.8s ease forwards;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #b8860b;
}

.game-card img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;

}

.game-card .card-content {
  padding: 1rem;
  color: #f0e6d2;
}

.game-card .card-content h3 {
  color: #ff0000;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.game-card .card-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}
a:link,
a:visited {
  color: #a20808; 
  text-decoration: none;
}
.genre-buttons {
  text-align: center;
  margin: 20px 0;
}

.genre-buttons button {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  margin: 5px;
  padding: 10px 20px;
  background-color: #1e1e2f;
  color: #ffffff;
  border: 2px solid #00ffc8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.genre-buttons button:hover {
  background-color: #00ffc8;
  color: #1e1e2f;
  box-shadow: 0 0 10px #00ffc8;
  transform: scale(1.05);
}

.genre-buttons button:active {
  transform: scale(0.95);
  background-color: #00ccaa;
}

.genre-buttons button.active {
  background-color: #00ffc8;
  color: #1e1e2f;
  box-shadow: 0 0 10px #00ffc8;
}

.game-showcase {
  background-color: #000000;
  color: #ffffff;
  padding: 40px 20px;
}

.game-showcase h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #00ffc8;
}
.events-section {
max-width: 1000px;
margin: 4rem auto;
padding: 2rem;
background-color: #1a0000;
border: 1px solid #b8860b;
border-radius: 10px;
}

.events-section h1 {
text-align: center;
font-size: 2.8rem;
color: #ff0000;
margin-bottom: 2rem;
}
.event-box {
  display: flex;
  align-items: center;
  background-color: #1a0000;
  border: 1px solid #b8860b;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.5rem 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.event-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.5);
}

.event-box img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  margin-right: 1rem;
}

.event-content {
  color: #f0e6d2;
}

.event-content h2 {
  font-size: 1.5rem;
  color: #ff0000;
  margin-bottom: 0.5rem;
}

.event-content p {
  font-size: 1rem;
  line-height: 1.5;
}

#updates {
    padding: 2rem;
    font-family: sans-serif;
}
.timeline {
    list-style: none;
    padding: 0;
}
.timeline li {
    margin: 1rem 0;
    border-left: 3px solid #ffcc00;
    padding-left: 1rem;
}
.game-info-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background-color: #1a0000;
  border: 2px solid gold;
  border-radius: 16px;
  text-align: center;
  color: #f0e6d2;
  min-height: 500px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.game-info-container h2 {
  
  font-size: 28px;
  margin-bottom: 15px;
  color: gold;
}

.game-info-container p {
  font-size: 18px;
  margin-bottom: 30px;
}

.instructions {
  text-align: left;
  margin: 0 auto 30px;
  max-width: 600px;
  list-style: none;
  padding-left: 0;
  font-size: 17px;
  line-height: 1.8;
}

.back-link {
  display: inline-block;
  margin-top: 20px;
  color: #ff6666;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: gold;
}
#contact {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1a0000;
  border: 1px solid #b8860b;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
}

#contact h2 {
  text-align: center;
  color: #ff0000;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

#contactForm {
  display: flex;
  flex-direction: column;
}

#contactForm label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #b8860b;
}

#contactForm input,
#contactForm textarea {
  padding: 0.8rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border: 1px solid #b8860b;
  background-color: #0c0c0c;
  color: #f0e6d2;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: gold;
  box-shadow: 0 0 8px gold;
  outline: none;
}

#contactForm button {
  padding: 0.8rem;
  background-color: #b8860b;
  color: black;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 10px #b8860b;
  font-family: 'Orbitron', sans-serif;
}

#contactForm button:hover {
  background-color: #daa520;
  color: #000;
  box-shadow: 0 0 20px 4px #ffd700, 0 0 30px 6px #ffa500, 0 0 40px 8px #ff8c00;
}

@media (max-width: 768px) {
  #contact {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  #contact h2 {
    font-size: 1.8rem;
  }

  #contactForm input,
  #contactForm textarea {
    font-size: 0.95rem;
  }
  #contactForm button {
    font-size: 0.95rem;
  }
}

span{
  color:gold;
}

#suggest {
  background-color: #1a0000;
  border: 1px solid #d4af37; 
  padding: 2rem;
  border-radius: 20px;
  max-width: 650px;
  margin: 5rem auto 3rem auto;
  font-family: 'Orbitron', sans-serif;
  box-shadow: 0 0 10px #d4af37;
}

#suggest h2 {
  color: red;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

#suggest label {
  display: block;
  color: #d4af37;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1rem;
}

#suggest input,
#suggest select,
#suggest textarea {
  width: 100%;
  padding: 0.9rem;
  background-color: #111;
  color: #f0f0f0;
  border: 1px solid #d4af37;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.4rem;
  font-family: 'Orbitron', sans-serif;
}

#suggest input::placeholder,
#suggest textarea::placeholder {
  color: #ccc;
  font-family: 'Orbitron', sans-serif;
}

#suggest button {
  margin-top: 1.8rem;
  background-color: #d4af37;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  font-size: 1.1rem;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #d4af37; 
}
.suggest-link {
  font-family: 'Orbitron', sans-serif;
  color: #facc15;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.suggest-link:hover {
  color: #fffb00;
  text-shadow: 0 0 8px #facc15;
}

#suggest button:hover {
  background-color: #e8c547;
  box-shadow: 0 0 10px #e8c547;
}

.form-success {
  margin-top: 1rem;
  color: #22c55e;
  font-weight: bold;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}
.backtosite:hover{
  color: #d4af37
}

.about-section,
.showcase,
.events-section,
#contact,
#suggest {
  animation: fadeIn 1s ease forwards;
}

.game-card,
.event-box,
.team-member {
  animation: slideUp 0.8s ease forwards;
}

.genre-buttons button:hover {
  animation: pulse 0.6s ease;
}

.cta-button {
  animation: glowPulse 2s infinite ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #b8860b, 0 0 20px #ff0000; }
  50% { box-shadow: 0 0 20px #ffd700, 0 0 30px #ff4500; }
  100% { box-shadow: 0 0 10px #b8860b, 0 0 20px #ff0000; }
}
