@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: white;
}

body,
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: #07172f;
}

/* --- variables ----------------------------------------------- */
:root {
  --secondary: #74d0f4;
  --nav-bg: #07172f;
}

/* --- wrapper -------------------------------------------------- */
nav.navbar {
  position: fixed;
  inset: 0 0 auto 0; /* top-0 left-0 right-0 */
  z-index: 99;
  transition: background 0.3s ease;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

nav.navbar.scrolled {
  background: var(--nav-bg);
}

/* --- inner flex container ------------------------------------ */
nav .limiter {
  max-width: 2000px;
  margin: 0 auto;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- logo ----------------------------------------------------- */
nav .logo img {
  width: 80px;
}

/* --- links (desktop) ----------------------------------------- */
nav .navlinks {
  display: flex;
  gap: 3rem;
  list-style: none;
}
nav .navlinks a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
nav .navlinks a:hover {
  color: var(--secondary);
}

/* --- burger (three lines) ------------------------------------ */
#burger {
  display: none; /* hidden on desktop */
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
#burger .burgerline {
  width: 34px;
  height: 3px;
  background: var(--secondary);
  margin: 6px 0;
  transition: all 0.25s;
  display: block;
}

/* turn burger into X when active */
#burger.active .burgerline:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

#burger.active .burgerline:nth-child(2) {
  opacity: 0;
}

#burger.active .burgerline:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ───────── mobile ≤ 800px ───────── */
/* ───────── mobile ≤ 800px ───────── */
@media (max-width: 800px) {
  /* show burger */
  nav .limiter #burger {
    display: block;
  }
  /* dropdown panel (full-width under the navbar) */
  nav .navlinks {
    position: absolute;
    top: 100%; /* just below the bar */
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 0;
    background: #07172f;
    transform: translateY(-120%); /* hidden */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  /* toggled by JS */
  nav .navlinks.active {
    transform: translateY(0); /* slides DOWN */
    opacity: 1;
    pointer-events: all;
  }
}
.hero-section {
  padding: 100px 0px;
  min-height: 750px;
  background: linear-gradient(#07172f, rgba(7, 23, 47, 0.7490196078), #07172f), url("../images/bg.png");
  background-size: cover;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-section .text-container {
  text-align: center;
  padding: 0px 10%;
}
.hero-section .text-container .main-text {
  max-width: 844px;
  margin: 0 auto;
  display: block;
  font-weight: 900;
  font-size: 55px;
}
.hero-section .text-container .main-text span {
  color: #74d0f4;
}
.hero-section .text-container .sub-text {
  margin-top: 25px;
  font-weight: 200;
}
.hero-section .text-container button {
  padding: 15px 25px;
  background-color: #74d0f4;
  border: none;
  color: black;
  font-weight: bold;
  margin-top: 34px;
  text-transform: uppercase;
  font-size: 16px;
  min-width: 200px;
  border-radius: 5px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .hero-section .text-container .main-text {
    font-size: 35px;
  }
}

/* ────────────────────────────────────────────────────────────── */
/*  THEME VARIABLES                                              */
/* ────────────────────────────────────────────────────────────── */
/* ────────────────────────────────────────────────────────────── */
/*  FILTER BAR & SEARCH                                          */
/* ────────────────────────────────────────────────────────────── */
.accounts-choice-section {
  text-align: center;
  /* shared container rules */
  /* ------- GAME BUTTONS (larger) ------- */
  /* ------- REGION BUTTONS (slimmer) ------- */
  /* search bar unchanged */
}
.accounts-choice-section .choices {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.accounts-choice-section #game-buttons .choice {
  width: 260px; /* larger than region */
  padding: 1.4rem 0.6rem;
  font-size: 1rem;
  background: #081328;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accounts-choice-section #game-buttons .choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px rgba(116, 208, 244, 0.45);
}
.accounts-choice-section #game-buttons .choice.active {
  background: #3aa0c8;
  border-color: #74d0f4;
  box-shadow: 0 0 10px rgba(116, 208, 244, 0.6);
}
.accounts-choice-section #region-buttons {
  margin-top: 50px !important;
}
.accounts-choice-section #region-buttons .choice {
  width: 100px;
  padding: 0.9rem 0.4rem;
  font-size: 0.9rem;
  background: #081328;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.accounts-choice-section #region-buttons .choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px rgba(116, 208, 244, 0.45);
}
.accounts-choice-section #region-buttons .choice.active {
  background: #3aa0c8;
  border-color: #74d0f4;
  box-shadow: 0 0 10px rgba(116, 208, 244, 0.6);
}
.accounts-choice-section .search {
  margin: 1rem;
  padding: 1rem;
  background-color: #081328;
  width: 90%;
  max-width: 542px;
  border: 1px solid #74d0f4;
  outline: none;
  border-radius: 8px;
}

/* ────────────────────────────────────────────────────────────── */
/*  REGION LIST (unchanged)                                      */
/* ────────────────────────────────────────────────────────────── */
.product-region-list {
  margin: 0 auto;
  margin-top: 22px;
  text-transform: uppercase;
  padding: 0 10%;
}
.product-region-list .chosen-region {
  border: 1px solid #74d0f4;
  cursor: pointer;
}
.product-region-list .region-list-container {
  width: 100%;
}
.product-region-list .region-list-container .account-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.product-region-list .region-list-container .account-categories p {
  color: white;
  padding: 10px;
  background-color: #031025;
  cursor: pointer;
  margin: 5px;
  border: 1px solid #031025;
  opacity: 0.7;
}
.product-region-list .region-list-container .account-categories p:hover {
  border: 1px solid #74d0f4;
  box-shadow: 0 0 5px rgba(116, 208, 244, 0.6823529412);
  opacity: 1;
}
.product-region-list .region-list-container .account-categories .clicked {
  border: 1px solid #74d0f4;
  box-shadow: 0 0 5px rgba(116, 208, 244, 0.6823529412);
  opacity: 1;
}
@media (max-width: 600px) {
  .product-region-list {
    font-size: 12px;
    padding: 0 5%;
  }
}

/* ────────────────────────────────────────────────────────────── */
/*  PRODUCT GRID (unchanged)                                     */
/* ────────────────────────────────────────────────────────────── */
.products-section {
  margin-bottom: 100px;
  margin-top: 47px;
}
.products-section .text-container {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  color: white;
}
.products-section .text-container .main-text {
  font-size: 48px;
  background: linear-gradient(270deg, #a144d0 20.56%, #3e2ea3 77.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.products-section .text-container .main-info {
  margin-top: 23px;
  font-weight: 200;
}
.products-section .product-container {
  padding: 0 10%;
  color: #74d0f4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  width: 100%;
}
.products-section .product-container .products {
  width: 100%;
}
.products-section .product-container .product-item {
  width: 361px;
  max-width: 361px;
  margin: 1%;
  background-color: #031025;
  position: relative;
  align-self: stretch;
  color: white !important;
  transition: all 0.4s ease;
  border: 2px solid #031025;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
}
.products-section .product-container .product-item .prod-img {
  width: 100%;
  min-height: 173px;
  background-size: cover;
  background-position: center;
}
.products-section .product-container .product-item .product-title {
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  margin: 33px auto 0;
  max-width: 250px;
}
.products-section .product-container .product-item .product-price {
  font-weight: 700;
  font-size: 40px;
  color: #74d0f4;
  text-align: center;
  margin-top: 13px;
}
.products-section .product-container .product-item .button {
  width: 208px;
  height: 48px;
  margin: 29px auto;
  display: block;
  cursor: pointer;
  background: #74d0f4;
  border-radius: 8px;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
}
.products-section .product-container .product-item:hover {
  transform: translateY(-5px);
  border: 2px solid #74d0f4;
}
.products-section .products {
  color: #74d0f4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  display: none;
}

footer {
  text-align: center;
  background-color: #0c1c34;
  padding: 100px 10%;
  font-weight: bold;
  text-transform: uppercase;
}
footer .main-text {
  color: #74d0f4;
  font-size: 40px;
}
footer img {
  width: 60px;
  margin: 20px 10px;
}
footer a {
  text-decoration: none;
}

.reviews {
  display: flex;
  padding: 50px 10%;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews .review-item {
  padding: 31px;
  margin: 1%;
  max-width: 373px;
  width: 100%;
  background-color: #031025;
}
.reviews .review-item .header {
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviews .review-item .header .date {
  font-size: 14px;
  color: #506587;
}
.reviews .review-item .product {
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 27px;
}
.reviews .see-more {
  padding: 15px 25px;
  background-color: #74d0f4;
  border: none;
  color: black;
  font-weight: bold;
  margin-top: 34px;
  text-transform: uppercase;
  font-size: 16px;
  min-width: 200px;
  border-radius: 5px;
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */