/* ===================================
   PLAY MAX - CSS Styles
   =================================== */

/* CSS Variables */
:root {
  /* Colors (HSL) */
  --background: hsl(0, 50%, 7%);
  --foreground: hsl(0, 0%, 98%);

  --card: hsl(0, 35%, 12%);
  --card-foreground: hsl(0, 0%, 98%);

  --primary: hsl(0, 72%, 51%);
  --primary-foreground: hsl(0, 0%, 100%);

  --secondary: hsl(45, 93%, 57%);
  --secondary-foreground: hsl(0, 0%, 10%);

  --accent: hsl(188, 94%, 43%);
  --accent-foreground: hsl(0, 0%, 100%);

  --border: hsl(0, 20%, 25%);
  --input: hsl(0, 20%, 18%);

  /* Spacing */
  --radius: 0.75rem;
  --container-padding: 1rem;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 0 20px hsla(0, 72%, 51%, 0.5);
}

.btn-primary:hover {
  background-color: hsl(0, 72%, 45%);
  box-shadow: 0 0 30px hsla(0, 72%, 51%, 0.7);
  transform: scale(1.05);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.05);
}

.btn-hero-primary {
  background: linear-gradient(to right, var(--primary), hsl(0, 72%, 45%));
  color: var(--primary-foreground);
  font-size: 1.125rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 0 40px hsla(0, 72%, 51%, 0.6);
  border: 2px solid hsla(0, 72%, 51%, 0.5);
}

.btn-hero-primary:hover {
  box-shadow: 0 0 60px hsla(0, 72%, 51%, 0.8);
  transform: scale(1.05);
}

.btn-hero-secondary {
  background-color: hsla(0, 0%, 0%, 0.5);
  backdrop-filter: blur(10px);
  color: var(--foreground);
  border: 2px solid hsla(188, 94%, 43%, 0.5);
  font-size: 1.125rem;
  padding: 1.5rem 2.5rem;
}

.btn-hero-secondary:hover {
  background-color: hsla(188, 94%, 43%, 0.1);
  border-color: var(--accent);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: hsla(0, 50%, 7%, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .navbar-content {
    height: 5rem;
  }
}

.logo img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    height: 3rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: hsla(0, 0%, 98%, 0.8);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

.mobile-link {
  display: block;
  color: hsla(0, 0%, 98%, 0.8);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-link:hover {
  color: var(--primary);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--background);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, hsla(0, 72%, 51%, 0.15), transparent 50%),
    radial-gradient(circle at 70% 50%, hsla(188, 94%, 43%, 0.15), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 70%, transparent 110%);
  opacity: 0.2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse 3s ease-in-out infinite;
}

.orb-1 {
  top: 25%;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background-color: hsla(0, 72%, 51%, 0.2);
}

.orb-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: hsla(188, 94%, 43%, 0.2);
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.hero-heading {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-heading {
    margin-bottom: 3rem;
  }
}

.hero-title-wrapper {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 3s ease infinite;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 8rem;
  }
}

.hero-underline {
  height: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  background-size: 200% auto;
  border-radius: 9999px;
  margin-top: 1rem;
  animation: gradientMove 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 3rem;
  }
}

.text-secondary {
  color: var(--secondary);
}

.text-primary {
  color: var(--primary);
}

.hero-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 98%, 0.8);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: hsla(0, 35%, 12%, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(0, 20%, 25%, 0.5);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-primary:hover {
  border-color: hsla(0, 72%, 51%, 0.5);
}

.stat-secondary:hover {
  border-color: hsla(45, 93%, 57%, 0.5);
}

.stat-accent:hover {
  border-color: hsla(188, 94%, 43%, 0.5);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-primary .stat-number {
  background: linear-gradient(to bottom right, var(--primary), hsl(0, 72%, 35%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-secondary .stat-number {
  background: linear-gradient(to bottom right, var(--secondary), hsl(45, 93%, 40%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-accent .stat-number {
  background: linear-gradient(to bottom right, var(--accent), hsl(188, 94%, 30%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 98%, 0.7);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem;
  }
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to top, var(--background), hsla(0, 50%, 7%, 0.5), transparent);
}

/* Section Styles */
.game-showcase,
.subscribe-features,
.platform-features,
.faq,
.cta-section {
  padding: 4rem 0;
}

@media (min-width: 768px) {

  .game-showcase,
  .subscribe-features,
  .platform-features,
  .faq,
  .cta-section {
    padding: 6rem 0;
  }
}

.game-showcase {
  background: linear-gradient(to bottom, var(--background), hsla(0, 35%, 12%, 0.2));
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: hsla(0, 72%, 51%, 0.1);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 98%, 0.7);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.25rem;
  }
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Games Carousel */
.games-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.games-carousel {
  display: flex;
  gap: 1rem;
  animation: scroll 30s linear infinite;
}

@media (min-width: 768px) {
  .games-carousel {
    gap: 1.5rem;
  }
}

.game-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: hsla(0, 35%, 12%, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

@media (min-width: 640px) {
  .game-card {
    width: 240px;
  }
}

@media (min-width: 768px) {
  .game-card {
    width: 280px;
  }
}

.game-card:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 0 30px hsla(0, 72%, 51%, 0.4);
}

.game-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  transition: var(--transition-smooth);
}

.game-card:hover .game-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), transparent);
}

.game-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  text-align: center;
  padding-bottom: 1.5rem;
}

.game-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .game-title {
    font-size: 1.25rem;
  }
}

.game-category {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Features Grid 3 Columns */
.features-grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Features Grid 2 Columns */
.features-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: hsla(0, 35%, 12%, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-0.5rem);
  border-color: var(--primary);
  box-shadow: 0 10px 30px hsla(0, 72%, 51%, 0.3);
}

.feature-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsla(0, 72%, 51%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background-color: hsla(0, 72%, 51%, 0.3);
}

.feature-icon-box i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-icon-box-large {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background-color: hsla(0, 72%, 51%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card-large:hover .feature-icon-box-large {
  background-color: hsla(0, 72%, 51%, 0.3);
}

.feature-icon-box-large i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: hsla(0, 0%, 98%, 0.7);
  line-height: 1.6;
}

/* Features Grid Large */
.features-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid-large {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card-large {
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--radius);
  background-color: hsla(0, 35%, 12%, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border);
  transition: var(--transition-smooth);
}

.feature-card-large:hover {
  transform: translateY(-0.5rem);
  border-color: var(--primary);
  box-shadow: 0 10px 30px hsla(0, 72%, 51%, 0.3);
}

.feature-icon-large {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.feature-title-large {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description-large {
  color: hsla(0, 0%, 98%, 0.7);
  line-height: 1.6;
  font-size: 1.125rem;
}

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  background-color: hsla(0, 35%, 12%, 0.4);
  backdrop-filter: blur(10px);
  border: 2px solid var(--border);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: transparent;
  color: var(--foreground);
  font-weight: 700;
  font-size: 1.125rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--primary);
}

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

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: hsla(0, 0%, 98%, 0.7);
  line-height: 1.8;
}

.faq-support-text {
  color: hsla(0, 0%, 98%, 0.7);
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, hsla(0, 72%, 51%, 0.1), hsla(188, 94%, 43%, 0.1));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 98%, 0.8);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Footer */
.footer {
  background-color: hsla(0, 35%, 12%, 0.4);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  color: hsla(0, 0%, 98%, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: hsla(0, 0%, 98%, 0.7);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(0, 72%, 51%, 0.2);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background-color: var(--primary);
  transform: scale(1.1);
}

.footer-social-text {
  color: hsla(0, 0%, 98%, 0.6);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright,
.footer-love {
  color: hsla(0, 0%, 98%, 0.6);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

@keyframes gradientMove {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease;
}/* Additional Styles for New Sections */

/* Best Platform Section */
.best-games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .best-games-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.best-game-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--radius);
    background-color: hsla(0, 35%, 12%, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.best-game-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 30px hsla(0, 72%, 51%, 0.4);
}

.best-game-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    transition: var(--transition-smooth);
}

.best-game-card:hover .best-game-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), transparent);
}

.best-game-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    text-align: center;
    padding-bottom: 2rem;
}

.best-game-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .best-game-title {
        font-size: 1.5rem;
    }
}

.best-game-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
}

.best-game-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.best-game-card:hover .best-game-play-icon {
    opacity: 1;
}

.play-button {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: hsla(0, 72%, 51%, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.play-button svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
    margin-left: 0.25rem;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 90rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background-color: hsla(0, 35%, 12%, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 30px hsla(0, 72%, 51%, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
    fill: var(--secondary);
}

.testimonial-text {
    color: hsla(0, 0%, 98%, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: hsla(0, 72%, 51%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 98%, 0.6);
}

/* CTA Section Enhancements */
.cta-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-bg-glow::before,
.cta-bg-glow::after {
    content: '';
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulseGlow 3s ease-in-out infinite;
}

.cta-bg-glow::before {
    top: 50%;
    left: 25%;
    background-color: hsla(0, 72%, 51%, 0.2);
}

.cta-bg-glow::after {
    top: 50%;
    right: 25%;
    background-color: hsla(45, 93%, 57%, 0.2);
    animation-delay: 1s;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--background), hsla(0, 35%, 12%, 0.2));
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: hsla(0, 0%, 98%, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.5rem;
    }
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.trust-badge {
    text-align: center;
}

.trust-icon {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsla(0, 0%, 98%, 0.7);
}

/* Section Icon with Lucide */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: hsla(0, 72%, 51%, 0.1);
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

/* Media Content specific */
.media-content .feature-card-large {
    padding: 2rem;
}

.media-content .feature-icon-box-large {
    margin-bottom: 1.5rem;
}

.media-content .feature-title-large {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.media-content .feature-description-large {
    font-size: 1rem;
    line-height: 1.6;
}

.media-content .feature-card-large .feature-count {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

/* Utility */
.text-foreground\/70 {
    color: hsla(0, 0%, 98%, 0.7);
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
}
