@charset "UTF-8";
.home-page .hero {
  padding: 120px 20px 80px;
  text-align: center;
}
.home-page .hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.home-page .hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: #ccc;
}
.home-page .hero .hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.home-page .hero .hero-btns .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.home-page .hero-splide {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  position: relative;
}
.home-page .hero-splide .splide__track {
  overflow: visible;
}
.home-page .hero-splide .splide__slide {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: 0.4s ease;
  opacity: 0.4;
  transform: scale(0.92);
}
.home-page .hero-splide .splide__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.home-page .hero-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s ease;
}
.home-page .hero-splide .splide__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.home-page .hero-splide .splide__arrow--prev::before {
  content: "\f104";
}
.home-page .hero-splide .splide__arrow--next::before {
  content: "\f105";
}
.home-page .hero-splide .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.home-page .hero-splide .splide__pagination .splide__pagination__page {
  width: 120px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s;
}
.home-page .hero-splide .splide__pagination .splide__pagination__page.is-active {
  background: #e100ff;
}

@media (max-width: 768px) {
  .home-page .hero {
    padding: 80px 16px 40px;
  }
  .home-page .hero h1 {
    font-size: 2rem;
  }
  .home-page .hero p {
    font-size: 1rem;
  }
  .home-page .hero .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  .home-page .hero .hero-btns .btn {
    width: 100%;
  }
  .home-page .hero-splide .splide__slide {
    aspect-ratio: auto;
    min-height: 180px;
  }
  .home-page .hero-splide .splide__pagination {
    gap: 12px;
  }
  .home-page .hero-splide .splide__pagination .splide__pagination__page {
    width: 60px;
  }
}
.u-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.u-transition-all {
  transition: all 0.3s ease;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 9, 51, 0.95);
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  font-family: "Mulish", sans-serif;
}
.cookie-banner .cookie-message {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-banner .cookie-message a {
  color: #a97aff;
  text-decoration: underline;
}
.cookie-banner .cookie-message button {
  padding: 6px 14px;
  border: none;
  border-radius: 5px;
  background: #a97aff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.cookie-banner .cookie-message button:hover {
  background: #8d61dd;
}

#cookie-snackbar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#cookie-snackbar.show {
  display: block;
  opacity: 1;
}

.btn {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.btn:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.btn-yellow {
  background: #ffcb05;
  color: #000;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(241, 196, 15, 0.3);
}
.btn-yellow:hover {
  background: #ffdb4d;
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.btn-yellow:hover {
  box-shadow: 0 0 22px rgba(241, 196, 15, 0.5);
}

.btn-blue {
  background: #1e90ff;
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.3);
}
.btn-blue:hover {
  background: #187bcd;
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.btn-blue:hover {
  box-shadow: 0 0 22px rgba(0, 170, 255, 0.5);
}

.games-section {
  padding: 80px 0;
}
.games-section .card-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.games-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.games-section .game-card {
  width: 300px;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.games-section .game-card.withering {
  background-image: url("../assets/withering/withering-card.png");
}
.games-section .game-card.discraft {
  background-image: url("../assets/discraft/discraft-card.png");
}
.games-section .game-card.conquest {
  background-image: url("../assets/epic-conquest/epic-conquest-card.png");
}
.games-section .game-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
}
.games-section .game-card .overlay .btn {
  margin-top: 10px;
}
.games-section .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(225, 0, 255, 0.3);
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
}
.page-content h1.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #e100ff;
}
.page-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 10px;
  color: #a97aff;
}
.page-content p,
.page-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #ddd;
}
.page-content ul {
  padding-left: 20px;
  margin-bottom: 1.5rem;
}
.page-content a {
  color: #a97aff;
  text-decoration: underline;
}
.page-content a:hover {
  color: #fff;
}

body {
  background-color: #000;
  font-family: "Mulish", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

body:not(.withering-page):not(.discraft-page):not(.conquest-page) {
  background: url("/assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

.features-section {
  padding: 60px 20px;
}
.features-section .section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.features-section .features-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.features-section .features-list li {
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.features-section .features-list li strong {
  color: #e100ff;
}

.playthrough-section {
  padding: 80px 20px;
  /* Alternate sides */
}
.playthrough-section .playthrough-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  flex-wrap: wrap;
}
.playthrough-section .playthrough-block:nth-child(odd) {
  background: #2a2a2a;
}
.playthrough-section .playthrough-block:nth-child(even) {
  background: #4b2b7f;
}
.playthrough-section .playthrough-block .playthrough-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}
.playthrough-section .playthrough-block .playthrough-image img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.playthrough-section .playthrough-block .playthrough-text {
  flex: 1;
  color: #ddd;
}
.playthrough-section .playthrough-block .playthrough-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.playthrough-section .playthrough-block .playthrough-text p {
  font-size: 1.1rem;
}
.playthrough-section .playthrough-block:nth-child(even) .playthrough-content {
  flex-direction: row-reverse;
}

.withering-page .hero {
  background: url("/assets/withering/withering-splash.png") center/cover no-repeat;
  height: 100vh;
  padding: 140px 20px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  z-index: 0;
}
.withering-page .hero::before, .withering-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.withering-page .hero h1, .withering-page .hero p, .withering-page .hero .hero-btns {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.withering-page .hero h1 {
  color: #b284ff;
  font-size: 3rem;
}
.withering-page .hero p {
  font-size: 1.2rem;
  color: #ccc;
}
.withering-page .hero .btn {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.withering-page .hero .btn:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.discraft-page .hero {
  background: url("/assets/discraft/discraft-splash.png") center/cover no-repeat;
  height: 100vh;
  padding: 140px 20px 40px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  z-index: 0;
}
.discraft-page .hero::before, .discraft-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.discraft-page .hero h1, .discraft-page .hero p, .discraft-page .hero .hero-btns {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.discraft-page .hero h1 {
  color: #ff8f00;
  font-size: 3rem;
}
.discraft-page .hero p {
  font-size: 1.2rem;
  color: #ccc;
}
.discraft-page .hero .btn {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.discraft-page .hero .btn:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.conquest-page .hero {
  background: url("/assets/epic-conquest/epic-conquest-splash.png") center/cover no-repeat;
  background-size: cover;
  height: 100vh;
  padding: 140px 20px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
  z-index: 0;
}
.conquest-page .hero::before, .conquest-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.conquest-page .hero h1, .conquest-page .hero p, .conquest-page .hero .hero-btns {
  position: relative;
  z-index: 1;
}
.conquest-page .hero h1 {
  color: #29b6f6;
  font-size: 3rem;
  margin-bottom: 20px;
}
.conquest-page .hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.conquest-page .hero .btn {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.conquest-page .hero .btn:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.conquest-page .hero .btn-disabled {
  background: grey;
  pointer-events: none;
  opacity: 0.6;
}
.conquest-page .hero .coming-soon {
  background: #2196f3;
  color: white;
  display: inline-block;
  padding: 6px 16px;
  margin-top: 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.snackbar {
  visibility: hidden;
  min-width: 200px;
  background: #323232;
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 10000;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
}
.snackbar.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

/* ================================
   ✨ Tier Icon Colors (visual cue)
   ================================ */
.purchase-card.bronze h3,
.active-tiers li.bronze {
  border-left-color: #cd7f32;
  color: #cd7f32;
}

.purchase-card.silver h3,
.active-tiers li.silver {
  border-left-color: #c0c0c0;
  color: #c0c0c0;
}

.purchase-card.gold h3,
.active-tiers li.gold {
  border-left-color: #ffd700;
  color: #ffd700;
}

/* =================
   💳 Purchase Cards
   ================= */
.purchase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.purchase-card {
  background: #1e1e1e;
  padding: 1.2rem;
  border-radius: 10px;
  border-left: 5px solid #888;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.purchase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.purchase-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: bold;
}

.purchase-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #ccc;
}

.purchase-detail i {
  color: #888;
}

.gift-id {
  color: #87cefa;
  font-weight: bold;
}

/* =================
   📜 Dashboard Tier List
   ================= */
.tier-list {
  list-style: none;
  padding: 0;
  margin-top: 1.2rem;
}

.tier-list li {
  background: #1c1c1c;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 0.6rem;
  border-left: 5px solid #888;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.expire-label {
  font-weight: bold;
  color: #bbb;
}

/* ===============
   🔧 Utility
   =============== */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 2rem 0 1.2rem;
  color: #fff;
}

.page-content {
  padding: 0 20px 40px;
}

.store-hero {
  text-align: center;
  margin: 80px auto 40px auto;
}
.store-hero .stacking-info {
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.store-hero .login-reminder {
  background: rgba(255, 60, 60, 0.12);
  border: 1px solid rgba(255, 60, 60, 0.4);
  color: #ff9999;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  max-width: 720px;
  margin: 20px auto 0 auto;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.store-hero .login-reminder i {
  color: #ff6666;
  font-size: 1.3rem;
}
.store-hero .login-reminder .btn-small {
  background: #ff6666;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s ease;
}
.store-hero .login-reminder .btn-small:hover {
  background: #ff4444;
}

.store-cards {
  padding: 40px 20px;
  text-align: center;
}
.store-cards .store-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.store-cards .purchase-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.store-cards .purchase-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.store-cards .purchase-card .price {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.store-cards .purchase-card ul.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.store-cards .purchase-card ul.benefits li {
  margin: 6px 0;
  font-size: 0.95rem;
}
.store-cards .purchase-card button {
  background: #fff;
  color: #000;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.store-cards .purchase-card button:hover {
  background: #ddd;
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.store-cards .bronze {
  border-left: 5px solid #cd7f32;
  color: #cd7f32;
}
.store-cards .silver {
  border-left: 5px solid #c0c0c0;
  color: #c0c0c0;
}
.store-cards .gold {
  border-left: 5px solid #ffd700;
  color: #ffd700;
}
.store-cards .store-note {
  margin-top: 40px;
  color: #aaa;
  font-size: 0.9rem;
}

.store-tiers {
  text-align: center;
  margin-top: 140px;
  padding: 100px 20px 20px 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.store-tiers .section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.store-tiers .store-banner {
  margin-bottom: 20px;
}

.store-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.03);
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 16px;
}
.store-table th, .store-table td {
  padding: 22px;
  text-align: center;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #e0e0e0;
}
.store-table thead th {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.6px;
}
.store-table thead th span {
  display: block;
  font-size: 1.4rem;
  margin-top: 6px;
  font-weight: 800;
}
.store-table .bronze {
  background: linear-gradient(to right, #cd7f32, #a97142);
  color: white;
}
.store-table .silver {
  background: linear-gradient(to right, #c0c0c0, #a9a9a9);
  color: white;
}
.store-table .gold {
  background: linear-gradient(to right, #ffd700, #ffa500);
  color: white;
}
.store-table .highlight td {
  background: rgba(255, 255, 255, 0.07);
  font-weight: bold;
  color: #ffcb05;
  font-size: 1rem;
  padding: 26px;
}
.store-table .buttons td {
  padding: 26px;
}
.store-table .buttons td button {
  display: inline-block;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.store-table .buttons td button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.store-table .buttons td button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.add-to-cart[data-tier=Bronze] {
  background: #cd7f32;
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.add-to-cart[data-tier=Bronze]:hover {
  background: rgb(164, 101.6, 40);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.add-to-cart[data-tier=Silver] {
  background: #a9a9a9;
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.add-to-cart[data-tier=Silver]:hover {
  background: rgb(143.5, 143.5, 143.5);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.add-to-cart[data-tier=Gold] {
  background: #ffd700;
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.add-to-cart[data-tier=Gold]:hover {
  background: #ccac00;
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.view-more-btn,
#checkout-button {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
}
.view-more-btn:hover,
#checkout-button:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}

.footer {
  background: #111;
  color: #aaa;
  padding: 40px 20px;
  font-size: 0.95rem;
}
.footer .footer-top,
.footer .footer-main {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer ul li a:hover {
  color: #fff;
}
.footer .footer-social a {
  font-size: 1.5rem;
  color: #7289da;
}
.footer .footer-social a:hover {
  color: #fff;
}

button, .btn {
  border: none;
  font-weight: 700;
  transition: 0.3s ease all;
}

button:hover, .btn:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .store-tiers-comparison {
    display: none;
  }
}
@media (min-width: 769px) {
  .store-cards {
    display: none;
  }
}
.cart-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.cart-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: 1px;
}
.cart-section .cart-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.cart-section .cart-list {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-section .cart-item {
  display: grid;
  grid-template-columns: 64px 1.5fr auto auto auto;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  gap: 20px;
  transition: 0.3s ease;
}
.cart-section .cart-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.cart-section .cart-item .item-image {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: contain;
}
.cart-section .cart-item .item-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.cart-section .cart-item .item-name small {
  display: block;
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 4px;
}
.cart-section .cart-item .item-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-section .cart-item .item-qty-controls button {
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cart-section .cart-item .item-qty-controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}
.cart-section .cart-item .item-qty-controls span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ddd;
  min-width: 20px;
  text-align: center;
}
.cart-section .cart-item .item-price {
  font-weight: bold;
  color: #ffcb05;
  font-size: 1.2rem;
  text-align: right;
}
.cart-section .cart-item .remove-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}
.cart-section .cart-item .remove-btn:hover {
  background: #ff4c4c;
}
.cart-section .cart-summary {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.04);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  align-self: flex-start;
}
.cart-section .cart-summary h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #aaa;
  margin-bottom: 12px;
}
.cart-section .cart-summary .total-amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffcb05;
  margin-bottom: 30px;
}
.cart-section .cart-summary .checkout-btn {
  background: linear-gradient(135deg, #a76cf1, #7f58ff);
  color: #fff;
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 1.05rem;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
}
.cart-section .cart-summary .checkout-btn:hover {
  background: linear-gradient(to right, rgb(152.6, 51, 255), #e733ff);
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.cart-section .cart-summary .checkout-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(127, 88, 255, 0.5);
}

.store-table .buttons td {
  padding: 26px;
}
.store-table .buttons td button {
  display: inline-block;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 0 15px rgba(225, 0, 255, 0.3);
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease-in-out;
}
.store-table .buttons td button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(225, 0, 255, 0.5);
}
.store-table .buttons td button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cart-section .cart-container {
    flex-direction: column;
    align-items: center;
  }
  .cart-section .cart-list {
    width: 100%;
  }
  .cart-section .cart-summary {
    width: 100%;
    margin-top: 30px;
  }
  .cart-section .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }
  .cart-section .cart-item .item-image {
    margin: 0 auto;
  }
  .cart-section .cart-item .item-name small {
    font-size: 0.85rem;
  }
  .cart-section .cart-item .item-qty-controls {
    justify-content: center;
    margin-top: 10px;
  }
  .cart-section .cart-item .item-price,
  .cart-section .cart-item .remove-btn {
    margin-top: 12px;
  }
  .cart-section .cart-item .item-price {
    font-size: 1.1rem;
  }
}
.floating-discord {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
.floating-discord a {
  background: #5865F2;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}
.floating-discord a:hover {
  background: #4752c4;
}

.header {
  background: #322741;
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  padding: 8px 32px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.header .header-left,
.header .header-right {
  display: flex;
  align-items: center;
}
.header .header-left {
  gap: 48px;
}
.header .game-nav {
  display: flex;
  gap: 40px;
}
.header .game-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.header .game-nav a:hover {
  color: #e100ff;
}
.header .logo img {
  max-height: 48px;
}
.header .header-right {
  gap: 32px;
}
.header .header-right a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
.header .header-right a:hover {
  color: #e100ff;
}
.header .header-right a.discord-login {
  background: #5865F2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}
.header .header-right a.discord-login img.discord-icon {
  height: 20px;
  width: 30px;
}
.header .header-right a.discord-login:hover {
  background: #4752c4;
}

.user-dropdown {
  position: relative;
  display: inline-block;
}
.user-dropdown .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
}
.user-dropdown .avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 6px;
}
.user-dropdown .arrow-down {
  margin-left: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  display: inline-block;
}
.user-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #1e1e1e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  margin-top: 10px;
  min-width: 160px;
  z-index: 10;
}
.user-dropdown .dropdown-menu a {
  color: white;
  padding: 10px 16px;
  display: block;
  text-decoration: none;
  font-size: 14px;
}
.user-dropdown .dropdown-menu a:hover {
  background-color: #333;
}
.user-dropdown.show .dropdown-menu {
  display: block;
}

.hidden {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav, .user-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #241b30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s ease;
  z-index: 1000;
  padding: 40px;
  text-align: center;
}
.mobile-nav.open, .user-nav.open {
  right: 0;
}
.mobile-nav .mobile-links, .user-nav .mobile-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav .mobile-links a, .user-nav .mobile-links a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}
.mobile-nav .mobile-links a:hover, .user-nav .mobile-links a:hover {
  color: #e100ff;
}
.mobile-nav .close-btn, .user-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1002;
}

body.nav-open {
  overflow: hidden;
}

.simple-header {
  background: transparent;
  padding: 16px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
}

@media (max-width: 768px) {
  .header {
    height: 80px;
    padding: 8px 20px;
    position: relative;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
  }
  .logo img {
    max-height: 42px;
  }
  .hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  .header-left {
    gap: 0 !important;
  }
  .game-nav {
    display: none !important;
  }
  .header-right {
    position: relative;
    transform: none;
    display: flex;
    align-items: center;
    z-index: 1001;
  }
  .header-right a:not(.discord-login) {
    display: none !important;
  }
  .header-right .user-dropdown:not(#discord-user-dropdown) {
    display: none !important;
  }
  .discord-login,
  #discord-user-dropdown {
    display: flex !important;
    align-items: center;
  }
  #discord-login.hidden,
  #discord-user-dropdown.hidden {
    display: none !important;
  }
  .user-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #222;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    padding: 12px 16px;
    animation: slideInRight 0.3s ease-out forwards;
    z-index: 1002;
  }
  .user-dropdown.open .dropdown-menu {
    display: flex;
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  #mobile-nav a[href*="/auth/discord"] {
    display: none !important;
  }
}
.faq-section {
  padding: 60px 20px;
}
.faq-section .section-title {
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}
.faq-section .faq-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}
.faq-section .faq-list li {
  font-size: 1.1rem;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 10px;
  border-left: 5px solid #7f00ff;
}

.about-section {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.about-section .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #ddd;
}
.about-section p strong {
  color: #fff;
}
.about-section p em {
  color: #c57fff;
}

.features-section .sitemap-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}
.features-section .sitemap-columns div {
  flex: 1;
  min-width: 220px;
}
.features-section .sitemap-columns div h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
}
.features-section .sitemap-columns div ul {
  list-style: none;
  padding: 0;
}
.features-section .sitemap-columns div ul li {
  margin: 8px 0;
}
.features-section .sitemap-columns div ul li a {
  color: #ccc;
  transition: color 0.2s;
}
.features-section .sitemap-columns div ul li a:hover {
  color: #fff;
}

.cookie-settings {
  padding: 120px 20px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cookie-settings h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.cookie-settings p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #ccc;
}
.cookie-settings .cookie-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 10px;
}
.cookie-settings .cookie-form .cookie-option label {
  font-size: 1rem;
  color: #eee;
}
.cookie-settings .cookie-form .cookie-option label input {
  margin-right: 10px;
}
.cookie-settings .cookie-form button.btn {
  align-self: center;
  margin-top: 20px;
}
.cookie-settings .cookie-links {
  margin-top: 30px;
  font-size: 0.95rem;
}
.cookie-settings .cookie-links a {
  color: #a97aff;
}
.cookie-settings .cookie-links a:hover {
  color: #fff;
}

.contact-page {
  padding: 100px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact-page h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.contact-page p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-page .contact-form .form-group {
  text-align: left;
}
.contact-page .contact-form .form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #ddd;
}
.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  background: #292942;
  color: #fff;
  font-size: 1rem;
}
.contact-page .contact-form .form-group input::placeholder,
.contact-page .contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-page .contact-form button.btn {
  align-self: center;
  width: 200px;
  font-size: 1rem;
}
.contact-page .contact-details p {
  font-size: 1rem;
  margin: 6px 0;
}
.contact-page .contact-details p a {
  color: #a97aff;
  font-weight: 500;
}
.contact-page .contact-details p a:hover {
  color: #fff;
}
.contact-page .contact-details p i {
  margin-right: 8px;
  color: #fff;
}

.support-header {
  padding: 140px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, #1e1e2f, #2d2d45);
  color: #fff;
}
.support-header .container {
  max-width: 900px;
  margin: 0 auto;
}
.support-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffcb05;
}
.support-header p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}
.support-header .btn-blue {
  background: #5865f2;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}
.support-header .btn-blue i {
  margin-right: 8px;
}
.support-header .btn-blue:hover {
  background: #4752c4;
}

.success-page {
  background: linear-gradient(135deg, #1e1e2f, #2d2d45);
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.success-page .thank-you-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 80px;
}
.success-page .success-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 50px 30px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.success-page .success-box h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffcb05;
  margin-bottom: 20px;
}
.success-page .success-box p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}
.success-page .success-box .success-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.success-page .success-box .success-buttons .btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
  background: linear-gradient(to right, #7f00ff, #e100ff);
  color: #fff;
}
.success-page .success-box .success-buttons .btn:hover {
  background: linear-gradient(to right, #a94eff, #ff5ee5);
  transform: scale(1.05);
}
.success-page .success-box .success-buttons .btn.btn-blue {
  background: #5865f2;
}
.success-page .success-box .success-buttons .btn.btn-blue:hover {
  background: #4752c4;
}

.screenshot-block {
  text-align: center;
  margin-bottom: 60px;
}

.screenshot-img {
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.screenshot-caption {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body, html {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  padding-top: 100px;
}

footer.footer {
  flex-shrink: 0;
}

main {
  padding-top: 120px;
  flex: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  background: url("../assets/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

footer.footer {
  flex-shrink: 0;
  margin-top: auto;
}

.footer {
  background: linear-gradient(to top, #140933, #2f1344);
  color: #e0e0e0;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 40px 60px;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}
.footer .footer-top .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-top .footer-links li a {
  font-weight: 500;
  transition: color 0.2s;
}
.footer .footer-top .footer-links li a:hover {
  color: #fff;
}
.footer .footer-top .footer-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-top .footer-lang i {
  font-size: 1.1rem;
}
.footer .footer-top .footer-lang button {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer .footer-top .footer-lang button:hover {
  color: #fff;
}
.footer .footer-top .language-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 8px;
  padding: 10px 0;
  background: #1e1e2f;
  color: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  list-style: none;
  z-index: 1000;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(10px);
}
.footer .footer-top .language-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .footer-top .language-menu li {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer .footer-top .language-menu li:hover {
  background: #292942;
}
.footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
}
.footer .footer-main .footer-brand {
  max-width: 300px;
}
.footer .footer-main .footer-brand img {
  height: 45px;
  filter: brightness(1.2);
  margin-bottom: 12px;
}
.footer .footer-main .footer-brand p {
  font-size: 0.85rem;
  color: #aaa;
  margin: 0;
}
.footer .footer-main .footer-brand p .trademark {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  color: #888;
  transition: color 0.2s;
}
.footer .footer-main .footer-brand p .trademark:hover {
  color: #ccc;
}
.footer .footer-main .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 8px;
}
.footer .footer-main .footer-legal li a {
  color: #aaa;
  transition: color 0.2s;
}
.footer .footer-main .footer-legal li a:hover {
  color: #fff;
}
.footer .footer-main .footer-social {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.footer .footer-main .footer-social a {
  font-size: 1.2rem;
  color: #aaa;
  transition: color 0.2s;
}
.footer .footer-main .footer-social a:hover {
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
