@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap");

*:not(i) {
  font-family: "Arvo", serif;
}

.navbar-my {
  padding-top: 15px;
  padding-bottom: 15px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* for Safari */
  background-color: rgba(255, 255, 255, 0.1); /* optional tint */
  border-bottom: 1px solid #ffffff34;
  border-top: 1px solid #ffffff34;
  z-index: 999;
}

.navbar-my ul li a {
  color: #fff;
}

.navbar-my ul li a.active-self {
  color: #16f8d3;
  font-weight: 600;
}

.navbar-my ul li a:hover {
  color: #16f8d3;
}

.navbar-toggler {
  background-color: #fff;
}

.flex-self {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.herom {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: linear-gradient(rgba(2, 24, 20, 0.8), rgba(2, 24, 20, 0.8)),
    url(../images/hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}

.herom-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.herom h6 {
  margin-bottom: 20px;
}

.herom h6 i {
  text-transform: uppercase;
  color: #16f8d3 !important;
}

.my-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.link-1 {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background-color: #16f8d3;
  padding: 10px 30px;
  border: 1px solid #16f8d3;
  transition: 0.3s ease all;
  border-radius: 10px;
}

.link-1:hover {
  background: none;
}

.link-2 {
  border-radius: 10px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: 1px solid #f8cf19;
  padding: 10px 30px;
  transition: 0.3s ease all;
}

.link-2:hover {
  background-color: #f8cf19;
}

strong {
  text-shadow: 0 0 30px #f8cf19;
}

.about {
  color: #fff;
}

.my-img {
  border-radius: 20px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  padding: 40px;
  box-shadow: 0 0 30px #16f8d3;
}

.my-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.game-part {
  background-image: linear-gradient(rgba(2, 24, 20, 0.8), rgba(2, 24, 20, 0.8)),
    url(../images/game.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: start;
  align-items: end;
  height: 500px;
  padding: 50px;
  box-shadow: 0 0 30px #f8cf19;
  border-radius: 20px;
}

.my-card {
  border-radius: 20px;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  color: #fff;
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #16f8d256, #f8cf1963);
  border: 2px solid #16f8d24f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.inner-sect {
  border-radius: 20px;
  color: #fff;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: all 0.5s ease;
  background: linear-gradient(135deg, #16f8d256, #f8cf1963);
  border: 2px solid #16f8d24f;
  margin-bottom: 20px;
}

.my-card p {
  margin: 0 !important;
}

.my-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(22, 248, 210, 0.2);
}

.my-card * {
  position: relative;
  z-index: 1;
}

.bottom-disc {
  background: #000;
  backdrop-filter: blur(15px);
}

.flexim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.flexim a {
  display: inline-block;
}

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;
  transition: 0.2s;
}

footer ul li a:hover {
  color: #16f8d3;
}

footer p {
  color: #fff;
  text-align: center;
}

.contact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  color: #fff;
  transition: all 0.4s ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #16f8d256, #f8cf1963);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
}

.contact-card * {
  position: relative;
  z-index: 1;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(22, 248, 210, 0.2);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #16f8d2;
  box-shadow: 0 0 10px rgba(22, 248, 210, 0.3);
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-gradient {
  background: linear-gradient(90deg, #16f8d2, #f8cf19);
  color: #021814;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(22, 248, 210, 0.4);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1; /* ensures color applies properly in Firefox */
}

placeholder {
  color: #fff !important;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

body {
  background: #021814;
}

.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: #f8cf19;
  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: #b99b12;
}

.custom-modal h3 {
  color: #000;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 50px !important;
  margin-top: 30px !important;
}
