/* SpinGrande Casino - Static HTML Version */
/* Based on Slotoro theme */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Exo+2:wght@400;500;600;700;800;900&family=Russo+One&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors - Deep purple/navy with gold accents */
  --background: hsl(260, 84%, 4%);
  --foreground: hsl(45, 100%, 96%);
  --card: hsl(260, 60%, 8%);
  --card-foreground: hsl(45, 100%, 96%);
  --primary: hsl(52, 100%, 50%);
  --primary-foreground: hsl(260, 84%, 4%);
  --secondary: hsl(270, 50%, 15%);
  --secondary-foreground: hsl(45, 100%, 96%);
  --muted: hsl(260, 40%, 12%);
  --muted-foreground: hsl(260, 20%, 60%);
  --accent: hsl(320, 80%, 50%);
  --accent-foreground: hsl(45, 100%, 96%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(260, 40%, 18%);
  --input: hsl(260, 40%, 15%);
  --ring: hsl(52, 100%, 50%);
  --radius: 0.75rem;
  
  /* Custom Colors */
  --gold: hsl(52, 100%, 50%);
  --gold-dark: hsl(45, 90%, 40%);
  --gold-glow: hsl(52, 100%, 60%);
  --purple-deep: hsl(260, 84%, 4%);
  --purple-dark: hsl(260, 60%, 8%);
  --purple-medium: hsl(270, 50%, 15%);
  --purple-light: hsl(280, 40%, 25%);
  --magenta: hsl(320, 80%, 50%);
  --green-success: hsl(142, 70%, 45%);
  
  /* Shadows */
  --shadow-gold: 0 0 30px hsla(52, 100%, 50%, 0.4);
  --shadow-glow: 0 0 60px hsla(320, 80%, 50%, 0.3);
  --shadow-card: 0 4px 24px hsla(260, 84%, 4%, 0.6);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3 {
  font-family: 'Russo One', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.font-display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em;
}

.font-heading {
  font-family: 'Russo One', sans-serif;
}

.font-body {
  font-family: 'Exo 2', sans-serif;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.max-w-4xl {
  max-width: 56rem;
  margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(8, 3, 20, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(260, 40%, 18%, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

.logo {
  height: 32px;
  width: auto;
}

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

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(45, 100%, 96%, 0.8);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  background-color: hsla(270, 50%, 15%, 0.5);
}

.nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.nav-link svg {
  width: 16px;
  height: 16px;
}

.header-buttons {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--foreground);
}

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

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsla(260, 40%, 18%, 0.5);
  animation: fadeIn 0.3s ease;
}

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

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: hsla(45, 100%, 96%, 0.8);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: hsla(270, 50%, 15%, 0.5);
}

.mobile-nav-link.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.mobile-nav-link svg {
  width: 20px;
  height: 20px;
}

.mobile-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsla(260, 40%, 18%, 0.5);
}

.mobile-buttons .btn {
  flex: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-gold {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px hsla(52, 100%, 50%, 0.6);
}

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

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

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.btn-lg {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    min-height: 480px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(8, 3, 20, 0.95) 0%, 
    rgba(8, 3, 20, 0.7) 50%, 
    rgba(8, 3, 20, 0.3) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 400px;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    padding: 3rem 0;
  }
}

.hero-text {
  animation: fadeIn 0.8s ease;
}

.hero-subtitle {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.1;
}

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

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

.hero-amount {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 20px hsla(52, 100%, 50%, 0.5);
  font-size: 1.875rem;
  margin-top: 0.25rem;
}

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

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

.hero-extra {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: hsla(45, 100%, 96%, 0.8);
  margin-top: 0.25rem;
}

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

.hero-cta {
  margin-top: 1.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-feature svg {
  width: 16px;
  height: 16px;
  color: var(--green-success);
}

.hero-character {
  display: none;
  justify-content: center;
}

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

.hero-character img {
  max-height: 320px;
  width: auto;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

/* Slider Navigation */
.hero-nav {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-nav-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  background-color: hsla(270, 50%, 15%, 0.5);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.hero-nav-btn:hover {
  background-color: var(--primary);
}

.hero-nav-btn svg {
  width: 20px;
  height: 20px;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: hsla(260, 20%, 60%, 0.5);
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 32px;
  background-color: var(--primary);
}

/* ============================================
   CARDS
   ============================================ */
.glass-card {
  background-color: hsla(260, 60%, 8%, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(260, 40%, 18%, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .glass-card {
    padding: 2rem;
  }
}

.card-game {
  background-color: var(--card);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid hsla(260, 40%, 18%, 0.5);
}

.card-game:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background-color: hsla(270, 50%, 15%, 0.3);
  padding: 1rem 0;
  border-top: 1px solid hsla(260, 40%, 18%, 0.3);
  border-bottom: 1px solid hsla(260, 40%, 18%, 0.3);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-items {
    gap: 3rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-item svg {
  width: 16px;
  height: 16px;
}

.trust-item svg.green {
  color: var(--green-success);
}

.trust-item svg.gold {
  color: var(--primary);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 0;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background-color: hsla(270, 50%, 15%, 0.5);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.category-btn:hover {
  background-color: var(--secondary);
}

.category-btn.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.category-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.main-content {
  padding-top: 64px;
}

@media (min-width: 768px) {
  .main-content {
    padding-top: 80px;
  }
}

.article {
  padding: 4rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.section-title svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

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

.text-success {
  color: var(--green-success);
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

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

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

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

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

th {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(260, 40%, 18%, 0.5);
}

td.font-medium {
  font-weight: 500;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background-color: hsla(270, 50%, 15%, 0.5);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.875rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   BONUS CARDS
   ============================================ */
.bonus-grid {
  display: grid;
  gap: 1.5rem;
}

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

.bonus-card {
  padding: 1.5rem;
}

.bonus-card.highlight {
  border-color: hsla(52, 100%, 50%, 0.5);
  box-shadow: var(--shadow-gold);
}

.bonus-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bonus-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background-color: hsla(52, 100%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bonus-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.bonus-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.bonus-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.bonus-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   GRADIENT BOX
   ============================================ */
.gradient-box {
  background: linear-gradient(to right, 
    var(--secondary) 0%, 
    var(--purple-medium) 50%, 
    var(--secondary) 100%);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

@media (min-width: 768px) {
  .gradient-box {
    padding: 2rem;
  }
}

/* ============================================
   FEATURE ICONS
   ============================================ */
.feature-card {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin: 0 auto 1rem;
}

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

.feature-desc {
  color: var(--muted-foreground);
}

/* ============================================
   GAME IMAGES
   ============================================ */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.game-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
}

.game-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-item:hover img {
  transform: scale(1.1);
}

.game-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(8, 3, 20, 0.9), transparent);
  padding: 0.75rem;
}

.game-label span {
  font-size: 0.875rem;
  font-weight: 700;
}

/* ============================================
   CHARACTER IMAGES
   ============================================ */
.character-center {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.character-center img {
  max-height: 256px;
  object-fit: contain;
}

/* ============================================
   LISTS
   ============================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.check-item svg {
  width: 16px;
  height: 16px;
  color: var(--green-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--card);
  border-top: 1px solid hsla(260, 40%, 18%, 0.5);
}

.footer-main {
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--primary);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
}

.footer-payments {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(260, 40%, 18%, 0.5);
}

.footer-payments-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-payments-title svg {
  width: 16px;
  height: 16px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-method {
  background-color: hsla(270, 50%, 15%, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  background-color: var(--background);
  border-top: 1px solid hsla(260, 40%, 18%, 0.5);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 3rem;
  }
}

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

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

.cta-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   SPORTS GRID
   ============================================ */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.sport-card {
  text-align: center;
  padding: 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.sport-card:hover {
  border-color: hsla(52, 100%, 50%, 0.5);
}

.sport-card.hot {
  border-color: hsla(52, 100%, 50%, 0.3);
}

.sport-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.sport-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.sport-leagues {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.hot-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: var(--accent);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hot-badge svg {
  width: 12px;
  height: 12px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.5rem;
}

.faq-question {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--muted-foreground);
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons-grid {
  display: grid;
  gap: 1.5rem;
}

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

.pros-card {
  border-color: hsla(142, 70%, 45%, 0.3);
}

.cons-card {
  border-color: hsla(0, 84%, 60%, 0.3);
}

.pros-title {
  color: var(--green-success);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.cons-title {
  color: var(--destructive);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pros-list,
.cons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pros-item,
.cons-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.pros-item svg {
  color: var(--green-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cons-item svg {
  color: var(--destructive);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============================================
   INSTALLATION STEPS
   ============================================ */
.install-grid {
  display: grid;
  gap: 2rem;
}

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

.install-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.install-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   HERO TEXT WRAPPER (5 Slides Support)
   ============================================ */
.hero-text-wrapper {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.hero-text-wrapper.active {
  display: grid;
}

@media (min-width: 768px) {
  .hero-text-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
  padding: 2rem 0;
}

.categories-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* ============================================
   ARTICLE META
   ============================================ */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   SECTION TITLE WITH ICON
   ============================================ */
.section-title-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.section-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ============================================
   BONUS LIST
   ============================================ */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bonus-list-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ============================================
   DATA TABLE
   ============================================ */
.table-responsive {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  font-size: 0.875rem;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.data-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsla(260, 40%, 18%, 0.5);
}

/* ============================================
   SCREENSHOT BOX
   ============================================ */
.screenshot-box {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid hsla(260, 40%, 18%, 0.3);
}

.screenshot-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
   TWO/THREE/FOUR COLUMN GRIDS
   ============================================ */
.two-col-grid {
  display: grid;
  gap: 1.5rem;
}

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

.three-col-grid {
  display: grid;
  gap: 1rem;
}

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

.four-col-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

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

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

/* ============================================
   ICON LIST
   ============================================ */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-list svg.accent {
  color: var(--accent);
}

/* ============================================
   TAG LIST
   ============================================ */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: hsla(270, 50%, 15%, 0.5);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

/* ============================================
   PAYMENT GRID
   ============================================ */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(270, 50%, 15%, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* ============================================
   PROS/CONS LISTS
   ============================================ */
.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.pros-list li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cons-list li svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ============================================
   RATING BOX
   ============================================ */
.rating-box {
  background-color: hsla(52, 100%, 50%, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.rating-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.rating-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.gold-fill {
  color: var(--primary);
  fill: var(--primary);
}

/* ============================================
   CONCLUSION CARD
   ============================================ */
.conclusion-card {
  border-color: hsla(52, 100%, 50%, 0.3);
}

/* ============================================
   ADVANTAGES SECTION
   ============================================ */
.advantages-section {
  padding: 4rem 0;
  background-color: hsla(270, 50%, 15%, 0.2);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: hsla(52, 100%, 50%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.advantage-icon svg {
  color: var(--primary);
}

/* ============================================
   FOOTER EXTRAS
   ============================================ */
.footer-logo {
  height: 40px;
  width: auto;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-awards {
  display: flex;
  gap: 0.5rem;
}

.footer-award {
  background-color: hsla(270, 50%, 15%, 0.5);
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.footer-mobile-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ============================================
   COLOR HELPERS
   ============================================ */
svg.green { color: var(--green-success); }
svg.gold { color: var(--primary); }
svg.accent { color: var(--accent); }
svg.red { color: var(--destructive); }

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

/* ============================================
   PADDING HELPERS
   ============================================ */
.p-md {
  padding: 1.5rem;
}

.p-lg {
  padding: 2rem;
}

@media (min-width: 768px) {
  .p-lg {
    padding: 3rem;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-xl {
  max-width: 36rem;
}

/* ============================================
   UTILITIES
   ============================================ */
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.leading-relaxed { line-height: 1.6; }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.h-auto { height: auto; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

.aspect-square { aspect-ratio: 1; }
.aspect-video { aspect-ratio: 16/9; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.hidden { display: none; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:block { display: block; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px hsla(52, 100%, 50%, 0.4); }
  50% { box-shadow: 0 0 40px hsla(52, 100%, 50%, 0.7); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow-pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(260, 60%, 8%);
}

::-webkit-scrollbar-thumb {
  background: hsl(260, 40%, 25%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}