@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*:not(i) {
  font-family: "Poppins", sans-serif;
}

.ul-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ul-links ul li {
  list-style: none;
}

.ul-links ul li a {
  text-decoration: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  text-transform: capitalize;
  color: #f1f1f1;
  transition: 0.2s;
}

.ul-links ul li a:hover {
  color: #9a9a9a;
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/hero.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 55vh;
}

.hero-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.hero-cont h1 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #f1f1f1;
  margin-bottom: 15px;
}

.hero-cont p {
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  letter-spacing: 0%;
  text-align: center;
  color: #878c91;
  margin: 0;
}

.game-item {
  padding: 25px;
  border: 1px solid #282828;
  border-radius: 12px;
}

.game-item .game-img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 16px;
}

.game-item h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  color: #f1f1f1;
}

.game-item p {
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  letter-spacing: 0%;
  color: #878c91;
}

.game-item .game-link {
  display: block;
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 32px;
  letter-spacing: 0%;
  color: #f1f1f1;
  margin-bottom: 15px;
}

.about p {
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  color: #878c91;
  margin: 0;
}

.about img {
  height: 400px;
  object-fit: cover;
  width: 100%;
}

.feat-item {
  padding: 25px;
  border: 1px solid #282828;
  border-radius: 12px;
}

.feat-item img {
  margin-bottom: 20px;
}

.feat-item h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  vertical-align: middle;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.feat-item p {
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  color: #878c91;
  margin: 0;
}

.sect-name h2 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  vertical-align: middle;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.sect-name p {
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  color: #878c91;
  margin: 0;
}

.accordion-button {
  background-color: #2c2c2c;
  color: #fff;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background-color: #1e1e1e;
  color: #fff;
  box-shadow: none;
}
.accordion-body {
  background-color: #1a1a1a;
  color: #ddd;
}

.gallery img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.form-control {
  background-color: #2c2c2c;
  border: 1px solid #444;
  color: #fff;
}
.form-control:focus {
  background-color: #2c2c2c;
  border-color: #666;
  box-shadow: none;
  color: #fff;
}

.form-control::placeholder{
  color: #fff;
}
.form-label {
  font-weight: 600;
  color: #ddd;
}
.btn-custom {
  background-color: #444;
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-custom:hover {
  background-color: #666;
  color: #fff;
}

footer {
  background: #000;
}

footer p {
  color: #fff;
  margin: 0;
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

body {
  background: #16171a;
}
