@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

*:not(i) {
  font-family: "Oswald", sans-serif;
}

.navbar-toggler {
  background-color: #fff;
}

.navbar-my {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #461e15b0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-my ul li a {
  color: #fff;
}

.navbar-my ul li a.active-self {
  color: #d8593e;
  font-weight: 600;
}

.navbar-my ul li a:hover {
  color: #d8593e;
}

.flex-self {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.hero {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: linear-gradient(
      rgba(0, 147, 187, 0.8),
      rgba(0, 147, 187, 0.8)
    ),
    url(../images/hero.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.link-1 {
  display: inline-block;
  padding: 10px 30px;
  background: #d85a3e8a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #d8593e;
  transition: 0.3s ease all;
}

.link-1:hover {
  background-color: transparent;
}

.link-2 {
  display: inline-block;
  padding: 10px 30px;
  border: 2px solid #d8593e;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease all;
}

.link-2:hover {
  background-color: #d85a3e8a;
}

.has-bg {
  padding: 20px;
  border: 2px solid #d8593e;
  border-radius: 12px;
  background: #d85a3e8a;
}

.game img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-item {
  min-height: 200px;
}

.bottom-disc {
  background: rgba(44, 19, 13, 0.838);
  backdrop-filter: blur(15px);
  z-index: 999;
}

footer {
  background: rgba(44, 19, 13, 0.838);
}

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;
  transition: 0.2s;
}

footer ul li a:hover {
  color: #d8593e;
}

footer p {
  color: #fff;
  text-align: center;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

body {
  background-color: rgba(0, 147, 187, 0.653);
}

.age-disclaimer-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 100000;
  background-image: linear-gradient(#000000f8, #000000f8);
  background-size: 400px;
}

.custom-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  max-width: 600px;
  width: 95%;
  border-radius: 10px;
  background-position: center;
  background-size: 700px;
  background-position: top;
  background-size: 300px;
  box-shadow: 0px 0px 40px 0px #ffffff61;
  background-repeat: repeat no-repeat;
}

.custom-modal a {
  background-color: #d8593e;
  text-align: center !important;
  color: #fff;
  transition: 0.2s;
  margin-bottom: 1px;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
}

.custom-modal a:hover {
  background: transparent;
  color: #000;
}

.custom-modal h3 {
  color: #000;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 50px !important;
  margin-top: 30px !important;
}

.container-2 {
  max-width: 800px;
  margin: 0 auto;
}

.login-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-card h2 {
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.login-card p {
  color: #6b6b6b;
  font-size: 15px;
  margin-bottom: 30px;
}
.form-control {
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #d3d7de;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: #6b737c;
  box-shadow: 0 0 0 0.2rem rgba(107, 115, 124, 0.25);
}

.btn-login {
  background-color: #d8593e;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-login:hover {
  background-color: transparent;
}
.register-text {
  margin-top: 25px;
  color: #fff;
  font-size: 15px;
}
.register-text a {
  color: #d8593e;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
