@font-face {
  font-display: block;
  font-family: Arpona;
  font-style: normal;
  font-weight: 400;
  src: url(/public/fonts/ArponaRegular.woff2) format("woff2");
}

@font-face {
  font-display: block;
  font-family: Arpona;
  font-style: normal;
  font-weight: 500;
  src: url(/public/fonts/ArponaMedium.woff2) format("woff2");
}

@font-face {
  font-display: block;
  font-family: Arpona;
  font-style: normal;
  font-weight: 600;
  src: url(/public/fonts/ArponaSemiBold.woff2) format("woff2");
}

@font-face {
  font-display: block;
  font-family: Arpona;
  font-style: normal;
  font-weight: 700;
  src: url(/public/fonts/ArponaBold.woff2) format("woff2");
}

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

:root {
  --font-family: "Arpona", sans-serif;
  --font-family-size--px: 16px;
  --font-family-size--rem: 1.6rem;
  --selection-background: #f0f;
  --selection-color: #fff;
}

html {
  font-size: 62.5% !important;
  line-height: 1.15 !important;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  box-sizing: border-box;
}

body {
  background: linear-gradient(180deg, #962157, #842c6c 35%, #2567d8);
  color: #fff;
  font-family: var(--font-family);
  font-size: var(--font-family-size--px);
  font-size: var(--font-family-size--rem);
  font-synthesis: none;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body ::-moz-selection {
  background: var(--selection-background);
  color: var(--selection-color);
}

body ::selection {
  background: var(--selection-background);
  color: var(--selection-color);
}

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

img {
  max-width: 100%;
  display: block;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 5, 21, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  justify-self: start;
  transition: width 0.3s ease-in-out;
  width: 80px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  display: none;
}

/* Navigation - Desktop */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item a {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.nav-item a:hover,
.nav-item--active a {
  color: var(--gold);
}

.nav-item--active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

/* Social Icons - Desktop */
.social-icons {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.7;
}

/* Play Now Button - Header */
.btn-play-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-play-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(126, 211, 33, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active {
  transform: rotate(90deg);
}

.mobile-menu-toggle.active span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  transform: rotate(135deg);
}

.mobile-menu-toggle.active span:last-child {
  opacity: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  font-size: 0;
  color: transparent;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 5, 21, 0.3) 0%,
    rgba(10, 5, 21, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  white-space: pre-line;
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2.6rem;
  font-weight: 500;
}

.btn-play-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(126, 211, 33, 0.4);
  display: inline-block;
}

.btn-play-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(126, 211, 33, 0.6);
}

/* Accessibility Button */
.accessibility-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.accessibility-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Cookie/Settings Button */
.cookie-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.cookie-btn:hover {
  transform: scale(1.1);
}

/* Games Carousel Section */
.games-carousel {
  background: linear-gradient(135deg, #a8336a 0%, #7d2453 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.games-carousel-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.games-carousel-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.games-carousel-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
}

.games-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Social Cards Section */
.social-cards {
  padding: 5rem 0;
  background: linear-gradient(180deg, #962157, #842c6c 45.73%, #233d88);
  position: relative;
  overflow: hidden;
}

.social-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.social-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Left Side - Images */
.social-images {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-island {
  width: 100%;
  max-width: 600px;
  height: auto;
  position: relative;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.social-coins {
  position: absolute;
  width: 692px;
  height: auto;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Right Side - Content */
.social-info {
  padding: 2rem 0;
}

.social-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: white;
}

.social-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.social-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.social-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.social-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card-body {
  flex: 1;
  min-width: 0;
}

.social-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
}

.social-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.social-card-btn {
  padding: 0.6rem 1.5rem;
  background: white;
  color: #741e4b;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all 0.3s;
  text-transform: capitalize;
}

.social-card-btn:hover {
  background: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Player Reviews Section */
.player-reviews {
  padding: 5rem 0;
  background: linear-gradient(180deg, #591e9b 0%, #4a1574 50%, #2d0e4d 100%);
  position: relative;
  overflow: hidden;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.reviews-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  letter-spacing: 2px;
}

.reviews-wrapper {
  overflow: hidden;
  padding: 2rem 0;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.review-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-quote h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.review-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.reviews-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.5rem;
}

.reviews-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.1);
}

.reviews-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Blogs Section */
.blogs-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #2d0e4d 0%, #1f0a35 50%, #0f051e 100%);
  position: relative;
  overflow: hidden;
}

.blogs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blogs-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.blogs-wrapper {
  overflow: hidden;
  padding: 2rem 0;
}

.blogs-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.blog-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.blog-separator {
  color: rgba(255, 255, 255, 0.4);
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-btn {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s;
  align-self: flex-start;
  margin-top: auto;
}

.blog-btn:hover {
  background: var(--gold);
  color: #0f051e;
}

.blogs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.blogs-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.5rem;
}

.blogs-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.1);
}

.blogs-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

.faq-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.faq-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 2rem;
}

.faq-answer.active {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* CTA Final Section */
.cta-final {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  min-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 5, 21, 0.3);
  z-index: 1;
}

.cta-final-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.cta-final-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.cta-final-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(126, 211, 33, 0.4);
  transition: all 0.3s;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.cta-final-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(126, 211, 33, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

.games-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}

.games-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Game Card */
.game-card-carousel {
  flex: 0 0 240px;
  background: linear-gradient(
    135deg,
    rgba(74, 44, 111, 0.5) 0%,
    rgba(45, 27, 78, 0.6) 100%
  );
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 215, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: scale(0.85);
  opacity: 0.7;
}

.game-card-carousel.active {
  flex: 0 0 320px;
  transform: scale(1);
  z-index: 10;
  opacity: 1;
}

.game-card-carousel:hover {
  opacity: 1;
}

.game-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.game-card-carousel.active .game-card-image {
  height: 360px;
}

.game-card-content {
  padding: 1.5rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.game-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.5px;
}

.game-card-description {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: none;
  color: white;
}

.game-card-carousel.active .game-card-description {
  display: block;
}

.game-card-btn {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(126, 211, 33, 0.4);
}

.game-card-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(126, 211, 33, 0.6);
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.5rem;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Mobile - Social Cards */
@media (max-width: 768px) {
  .social-cards {
    padding: 3rem 0;
  }

  .social-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-images {
    height: 400px;
  }

  .social-island {
    max-width: 400px;
  }

  .social-coins {
    width: 390px;
  }

  .social-title {
    font-size: 3.4rem;
    font-weight: 700;
    text-align: center;
  }

  .social-description {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 12px 0 28px;
    text-align: center;
  }

  .social-card {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .social-card-icon {
    width: 50px;
    height: 50px;
  }

  .social-card-icon img {
    width: 100%;
    height: 100%;
  }

  .social-card-title {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .social-card-desc {
    font-size: 15px;
  }

  .social-card-btn {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
  }

  .social-card:hover {
    transform: none;
  }
}

/* Mobile Carousel */
@media (max-width: 768px) {
  .games-carousel {
    padding: 3rem 0;
  }

  .games-carousel-container {
    padding: 0;
  }

  .games-carousel-wrapper {
    padding: 2rem 0;
  }

  .game-card-carousel {
    flex: 0 0 220px;
    transform: scale(0.9);
  }

  .game-card-carousel.active {
    flex: 0 0 280px;
    transform: scale(1);
  }

  .game-card-image {
    width: 100%;
    height: 264px;
  }

  .game-card-carousel.active .game-card-image {
    height: 264px;
  }

  .games-carousel-track {
    gap: 1rem;
    padding-left: 30px;
  }

  .games-carousel-title {
    font-size: 3.2rem;
    font-weight: 900;
    padding: 80px 20px 0;
  }

  .games-carousel-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    padding: 12px 0 63px;
  }

  .player-reviews {
    padding: 3rem 0;
  }

  .reviews-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
  }

  .reviews-wrapper {
    padding: 1rem 0;
    overflow: hidden;
  }

  .reviews-track {
    gap: 2rem;
  }

  .review-card {
    flex: 0 0 calc(85% - 1rem);
  }

  .review-quote h3 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    height: 70px;
  }

  .review-text {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 200;
    line-height: 1.4;
    max-height: 400px;
  }

  .author-name {
    font-size: 2.2rem;
    font-weight: 600;
  }

  .blogs-section {
    padding: 3rem 0;
  }

  .blog-meta {
    font-size: 1.6rem;
  }

  .blogs-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }

  .blogs-wrapper {
    padding: 1rem 0;
    overflow: hidden;
  }

  .blogs-track {
    gap: 2rem;
  }

  .blog-card {
    flex: 0 0 calc(85% - 1rem);
  }

  .blog-image {
    height: 200px;
  }

  .blog-title {
    font-size: 2.4rem;
    font-weight: 500;
  }

  .blog-btn {
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 800;
    padding: 14px 24px;
    text-decoration: none;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }

  .faq-section {
    padding: 4rem 0;
    min-height: auto;
  }

  .faq-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
  }

  .faq-answer p {
    font-size: 1.4rem;
  }

  .cta-final {
    padding: 4rem 0;
    min-height: 900px;
  }

  .cta-final-heading {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
  }

  .cta-final-desc {
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  }

  .cta-final-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Free Upgrades Section */
.free-upgrades {
  background: linear-gradient(135deg, #c4479d 0%, #a8336a 50%, #7d2453 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.free-upgrades-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.free-upgrades-header {
  text-align: center;
  margin-bottom: 3rem;
}

.free-upgrades-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.free-upgrades-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.upgrades-content {
  position: relative;
  padding: 15px;
}

.upgrades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 36px;
  position: relative;
  z-index: 2;
}

/* Upgrade Card */
.upgrade-card {
  position: relative;
  aspect-ratio: 4/5;
  perspective: 1000px;
}

.upgrade-card-border {
  position: absolute;
  inset: -8px;
  background: url("/public/images/_site/decorated-frame.png") no-repeat center
    center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.upgrade-card-inner {
  height: 100%;
  background: rgba(139, 92, 246, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.upgrade-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upgrade-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.upgrade-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.upgrade-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* Navigation Buttons */
.upgrades-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 3;
}

.upgrades-nav-prev {
  left: -25px;
}

.upgrades-nav-next {
  right: -25px;
}

.upgrades-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

/* Mascot */
.upgrades-mascot {
  position: absolute;
  right: -50px;
  top: -80px;
  width: 250px;
  z-index: 4;
  pointer-events: none;
}

.upgrades-mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 1400px) {
  .upgrades-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .upgrade-title {
    font-size: 1rem;
  }

  .upgrade-description {
    font-size: 0.85rem;
  }

  .upgrades-mascot {
    width: 200px;
    right: -30px;
  }
}

@media (max-width: 1200px) {
  .upgrades-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .upgrades-mascot {
    display: none;
  }
}

@media (max-width: 768px) {
  .free-upgrades {
    padding: 3rem 0;
    padding-bottom: calc(4rem + 120px);
  }

  .free-upgrades-title {
    font-size: 3.2rem;
    font-weight: 900;
    padding: 70px 20px 0;
  }

  .free-upgrades-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    padding-bottom: 23px;
  }

  .free-upgrades-container {
    padding: 0;
  }

  .upgrades-content {
    overflow: visible;
    padding: 5px 1rem;
  }

  .upgrades-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 36px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .upgrades-grid::-webkit-scrollbar {
    display: none;
  }

  .upgrade-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
    aspect-ratio: 3/4;
  }

  .upgrade-card-border {
    inset: -8px;
  }

  .upgrade-card-inner {
    padding: 1.5rem 1rem;
  }

  .upgrade-icon {
    width: 100%;
    height: 100px;
  }

  .upgrade-title {
    font-size: 1.8rem;
    font-weight: 800;
    padding: 0 20px;
  }

  .upgrade-description {
    font-size: 1.6rem;
  }

  .upgrades-nav-btn {
    display: flex;
    width: 45px;
    height: 45px;
    bottom: -120px;
    top: auto;
    transform: none;
  }

  .upgrades-nav-prev {
    left: 50%;
    margin-left: -60px;
  }

  .upgrades-nav-next {
    right: 50%;
    margin-right: -60px;
  }

  .upgrades-nav-btn:hover {
    transform: scale(1.1);
  }

  .upgrades-mascot {
    display: none;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .main-nav {
    display: block;
  }

  .social-icons {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header-container {
    padding: 0 2rem;
  }

  .hero-content {
    padding: 3rem 2rem;
  }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .nav-list {
    gap: 1.5rem;
  }

  .nav-item a {
    font-size: 0.85rem;
  }

  .btn-play-header {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-play-header {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .btn-play-hero {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .accessibility-btn,
  .cookie-btn {
    width: 45px;
    height: 45px;
    bottom: 1.5rem;
  }

  .accessibility-btn {
    left: 1.5rem;
  }

  .cookie-btn {
    right: 1.5rem;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 5, 21, 0.98);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu .nav-list {
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu .nav-item a {
  font-size: 1.5rem;
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.list-dot::before {
  background-color: #9d0395;
  border-radius: 50%;
  content: "";
  height: 8px;
  left: -16px;
  position: absolute;
  top: 40%;
  width: 8px;
}

.radio-button:checked::before {
  background-color: #171717;
  border-radius: 50%;
  content: "";
  display: block;
  height: 12px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
}

.article-item {
  display: inline-block;
  height: 600px;
  width: 100%;
}

.article-item a {
  display: inline-block;
  height: 100%;
}

.frame::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  border: 22px solid;
  border-image: url(/public/images/_site/border.png) 35 round;
  top: 0;
  z-index: 20;
}

.frame::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  --frame-backdrop-rotation: 0deg;
  --frame-backdrop-transparency: 65.2%;
  background: linear-gradient(
    var(--frame-backdrop-rotation, 0deg),
    rgba(0, 0, 0, 0.8) 15.63%,
    transparent var(--frame-backdrop-transparency, 65.2%)
  );
  height: 100%;
  max-height: 80%;
  z-index: 10;
}

@media (max-width: 768px) {
  .article-item {
    display: inline-block;
    height: 600px;
    width: 100%;
  }

  .article-item a {
    display: inline-block;
    height: 100%;
  }

  .frame::before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    border: 22px solid;
    border-image: url(/public/images/_site/border.png) 35 round;
    top: 0;
    z-index: 20;
  }

  .frame::after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    --frame-backdrop-rotation: 0deg;
    --frame-backdrop-transparency: 65.2%;
    background: linear-gradient(
      var(--frame-backdrop-rotation, 0deg),
      rgba(0, 0, 0, 0.8) 15.63%,
      transparent var(--frame-backdrop-transparency, 65.2%)
    );
    height: 100%;
    max-height: 80%;
    z-index: 10;
  }
}
