body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: #19273d;
  color: #f4f4f4;
  line-height: 1.6;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .container {
    width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    width: 1320px;
  }
}

/* Footer Styles */
.footer {
  background-color: #172131;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 300;
}

.footer__top {
  padding: 40px 0;
}

.footer__top--inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer__top--logo {
  max-width: 300px;
}

.footer__top--logo img {
  width: 200px;
  margin-bottom: 15px;
}

.footer__top--logo p {
  font-size: 13px;
  opacity: 0.9;
}

.footer__top--menu {
  padding-left: 20px;
}

.footer__top--menu p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #f2c01c;
}

.footer__top--menu ul {
  list-style: none;
  padding: 0;
}

.footer__top--menu ul li {
  margin-bottom: 10px;
}

.footer__top--menu ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer__top--menu ul li a:hover,
.footer__top--menu ul li a:focus {
  color: #f2c01c;
}

.footer__bottom {
  padding: 15px 0;
  background: #131c29;
}

.footer__bottom--info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}

.footer__bottom p {
  margin: 5px 0;
  font-size: 12px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer__top--inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__top--logo {
    max-width: 100%;
  }
  .footer__top--menu {
    padding-left: 0;
  }
  .footer__bottom--info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Content Styles */
.content {
  padding: 60px 0;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.content__inner {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f2c01c #19273d;
  padding-right: 10px;
}

.content__inner h2 {
  font-size: 28px;
  color: #f2c01c;
  margin: 0 0 20px;
}

.content__inner a {
  color: #f2c01c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.content__inner a:hover,
.content__inner a:focus {
  color: #ffd700;
}

.content__inner::-webkit-scrollbar {
  width: 5px;
}

.content__inner::-webkit-scrollbar-thumb {
  background-color: #f2c01c;
  border-radius: 5px;
}

.content__inner::-webkit-scrollbar-track {
  background-color: #19273d;
}

/* Mission Styles */
.mission {
  padding: 50px 0;
  background: #172131;
}

.mission__inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.mission__inner--detail h2 {
  font-size: 32px;
  margin: 0 0 15px;
}

.mission__inner--detail h2 a {
  color: #f2c01c;
  text-decoration: none;
}

.mission__inner--detail p {
  font-size: 16px;
  margin-bottom: 20px;
}

.mission__inner .bonus-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(98deg, #f2c01c, #ffd700);
  color: #131c29;
  border-radius: 10px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.mission__inner .bonus-button:hover,
.mission__inner .bonus-button:focus {
  background: linear-gradient(98deg, #ffd700, #f2c01c);
}

.mission__inner--img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .mission__inner {
    flex-direction: column;
    gap: 30px;
  }
}

/* Bonus Styles */
.bonus {
  padding: 60px 0;
}

.bonus__title h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #f2c01c;
  margin: 0 0 10px;
}

.bonus__title p {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #f4f4f4;
  margin: 0 0 30px;
}

.bonus__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.bonus__inner--col {
  background: #0f2037;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.bonus__inner--col:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.bonus__inner--col img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.bonus__inner--col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f2c01c;
  margin: 0 0 10px;
}

.bonus__inner--col p {
  font-size: 14px;
  margin: 0 0 15px;
}

.bonus__inner--col .center-custombtn {
  display: inline-flex;
  justify-content: center;
  background: linear-gradient(98deg, #0092ff, #0074ca);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.bonus__inner--col .center-custombtn:hover,
.bonus__inner--col .center-custombtn:focus {
  background: linear-gradient(98deg, #0074ca, #0092ff);
}

@media (max-width: 768px) {
  .bonus__inner {
    grid-template-columns: 1fr;
  }
}

/* Slider Styles */
.slider {
  padding: 60px 0;
  background: linear-gradient(to bottom, rgb(11 17 27 / 20%), rgba(25, 39, 61, 0.4)), url(../img/kk5.jpg) no-repeat top center;
  background-size: cover;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slider__menu--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.slider__menu--logo img {
  width: 220px;
}

.slider__menu--buttons {
  display: flex;
  gap: 15px;
}

.slider__menu--buttons a {
  background: linear-gradient(98deg, #fff084, #ffd800);
  color: #131c29;
  border-radius: 8px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider__menu--buttons a:hover,
.slider__menu--buttons a:focus {
  background: linear-gradient(98deg, #ffd800, #fff084);
  transform: translateY(-2px);
}

.slider__menu--buttons a:last-child {
  background: linear-gradient(98deg, #0092ff, #0074ca);
  color: #ffffff;
}

.slider__menu--buttons a:last-child:hover,
.slider__menu--buttons a:last-child:focus {
  background: linear-gradient(98deg, #0074ca, #0092ff);
}

.slider__details--inner {
  max-width: 700px;
}

.slider__details--inner h1 {
  font-size: 48px;
  font-weight: 700;
  color: #f2c01c;
  margin: 0 0 20px;
}

.slider__details--inner p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}

.slider__details--inner a,
.center-custombtn {
  background: linear-gradient(98deg, #0092ff, #0074ca);
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.slider__details--inner a:hover,
.slider__details--inner a:focus,
.center-custombtn:hover,
.center-custombtn:focus {
  background: linear-gradient(98deg, #0074ca, #0092ff);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .slider {
    min-height: 500px;
    padding: 30px 0;
  }
  .slider__menu--inner {
    flex-direction: column;
    gap: 20px;
  }
  .slider__details--inner {
    max-width: 100%;
    text-align: center;
  }
  .slider__details--inner h1 {
    font-size: 36px;
  }
  .slider__details--inner p {
    font-size: 16px;
  }
}

/* Games Styles */
.games {
  padding: 60px 0;
  text-align: center;
}

.games__title h2 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
  color: #f2c01c;
  margin: 0 0 20px;
}

.games__title span {
  font-weight: 700;
}

.games__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.games__inner--col {
  text-align: center;
  background: #0f2037;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games__inner--col:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.games__inner--col img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.games__inner--col h3 {
  font-size: 20px;
  font-weight: 600;
  color: #f2c01c;
  margin: 0 0 10px;
}

.games__inner--col p {
  font-size: 14px;
  margin: 0;
}

.games__inner--col a {
  color: #f2c01c;
  text-decoration: none;
  font-weight: 600;
}

.games__inner--col a:hover,
.games__inner--col a:focus {
  color: #ffd700;
}

@media (max-width: 768px) {
  .games__inner {
    grid-template-columns: 1fr;
  }
}

/* Membership Tiers */
.membership-tiers {
  margin-bottom: 50px;
  text-align: center;
}

.membership-tiers h2 {
  font-size: 36px;
  font-weight: 500;
  color: #f2c01c;
  margin-bottom: 30px;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 20px 0;
}

.card {
  background: linear-gradient(180deg, #0f2037, #1a2f4e);
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card.bronze {
  border: 3px solid #cd7f32;
}

.card.gold {
  border: 3px solid #ffd700;
}

.card.diamond {
  border: 3px solid #b9f2ff;
}

.card.platinum {
  border: 3px solid #e5e4e2;
}

.vip-star {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.card .title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f2c01c;
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #f4f4f4;
}

@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;
  }
}