/* The Matrix Variabler */
/* Mixins */
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0a1f44;
}
header .logo img {
  height: 40px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
header nav ul li a:hover {
  opacity: 0.7;
}

/* HERO */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-btn {
  position: absolute;
  bottom: 2cm;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  border-radius: 6px;
  background: linear-gradient(135deg, #0a2344, #2b2b2b);
  transition: all 0.3s ease;
}
.hero .hero-btn:hover {
  background: linear-gradient(135deg, #003b1a, #2b2b2b);
  transform: translateX(-50%) scale(1.05);
}

/* GAME CONTAINER */
#gameContainer {
  width: 90%;
  max-width: 900px;
  margin: 50px auto;
  padding: 40px;
  background-color: #111;
  border: 2px solid #00ff88;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#gameContainer img {
  width: 100%;
  max-width: 850px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

#gameContainer button {
  padding: 15px 25px;
  background-color: transparent;
  color: #00ff88;
  border: 2px solid #00ff88;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

#gameContainer button:hover {
  background-color: #00ff88;
  color: #111;
  transform: scale(1.1);
}

#gameContainer p {
  color: #f5f5f5;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
}

.character-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.character-card:hover {
  transform: scale(1.08);
}

.character-img {
  width: 250px;
  cursor: pointer;
  transition: 0.3s ease;
}

.character-img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 15px rgba(0, 255, 98, 0.541));
}

.character-selection {
  display: flex;
  justify-content: center;
  gap: 40px;
}

#about {
  max-width: 900px;
  margin: 100px auto;
  padding: 40px;
  text-align: left;
}

footer {
  margin-top: 100px;
  padding: 30px;
  text-align: center;
  background: #071326;
  color: #f5f5f5;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(8px);
}

/* Media Queries */
@media (max-width: 768px) {
  #gameContainer {
    padding: 20px;
    width: 95%;
  }
  #gameContainer p {
    font-size: 16px;
  }
  #gameContainer button {
    width: 100%;
    font-size: 16px;
  }
  .character-selection {
    flex-direction: column;
    align-items: center;
  }
  .character-img {
    width: 180px !important;
  }
  #gameContainer img {
    width: 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */