@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: #ffd300;
  font-weight: 600;
}

.navbar-my ul li a:hover {
  color: #ffd300;
}
.video-section {
  position: relative;
  height: 80vh;
  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 {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content h1 {
  font-size: 45px;
  font-weight: 800;
  color: #ffd300;
}

.game-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background-color: #b8860b;
  padding: 10px 40px;
  font-size: 18px;
  font-weight: 800;
  transition: 0.3s;
}

.game-link:hover {
  background-color: #ffd300;
  color: #000;
}

.about h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}

.about p {
  color: #fff;
  font-size: 17px;
}

.about img {
  width: 100%;
  object-fit: cover;
  height: 600px;
}

.game {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/game.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

.game a {
  font-size: 30px !important;
}

.why-us {
  border-radius: 20px;
}

.why-us p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.disc p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.brd h2 {
  color: #ffff;
  font-size: 45px;
  font-weight: 800;
  text-align: center;
  margin: 0;
}

.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 */

.navbar-toggler{
  background-color: #ffd300;
}

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-color: #3E5F44;
}

.why-section{
  background: #5E936C;   
}

.why-title{
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #000;
}
.why-body{
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #000;
}

.text-why-section{
  text-align: center;
  color: whitesmoke;
  font-size: 32px;
  font-weight: 700;
}

@media (min-width: 992px){
  .why-section .col-lg-4{ padding-right: 2rem; }
  .why-section .col-lg-8{ padding-left: 2rem; }
}

.footer-imgbox{
  width: 104px; 
  height: 44px;
  background:#e9e9e9;
}

.footer-brand{
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../images/bg.jpeg');
  background-size: cover;
  background-position: center;
  filter: none; 
}

