@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*:not(i) {
  font-family: "Montserrat", sans-serif;
}

.navbar-my {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-my ul li a {
  color: #fff;
}

.navbar-my ul li a.active-self {
  color: #5dbf17;
  font-weight: 600;
}

.navbar-my ul li a:hover {
  color: #5dbf17;
}

.navbar-toggler {
  background: #5dbf17;
}

.hero h1 {
  color: #5dbf17;
}

.hero p {
  color: #fff;
}

.about h2 {
  color: #fff;
}

.about p {
  color: #fff;
}

.game-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 40px;
  background: #25301d;
  transition: 0.2s;
}

.game-link:hover {
  background: #5dbf17;
}

.review {
  background: #5dbf17;
}

.rev-item {
  color: #fff;
  border-radius: 10px;
}

.rev-item p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}
.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.content {
  position: relative;
  z-index: 2;
}

.disc h2 {
  color: #fff;
  font-weight: 700;
}

.disc p {
  color: #fff;
}

footer {
  background: #000;
}

footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer p {
  color: #fff;
  margin: 0;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

body {
  background: #25301d;
}

.field {
  background: #2a2f36;
  border: 0;
} /* input bg on dark */
.field::placeholder {
  color: #adb5bd;
} /* readable placeholder */
.field:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.08);
}
textarea.field {
  border-radius: 2rem;
} /* chunky radius like the mock */

