/*
Theme Name: Slotty House
Theme URI: https://slottyhouse.com
Author: Slotty House
Author URI: https://slottyhouse.com
Description: Premium casino games review theme - converted from Lovable React/Vite app. n8n automation-ready with custom REST API endpoints, programmatic media import, and full Tailwind CSS design system.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slotty-house
Requires at least: 6.0
Requires PHP: 8.0
*/

/* ===================================================================
   CSS VARIABLES (from Lovable index.css)
   =================================================================== */
:root {
  --background: 220 20% 4%;
  --foreground: 0 0% 98%;
  --card: 220 15% 8%;
  --card-foreground: 0 0% 98%;
  --popover: 220 15% 8%;
  --popover-foreground: 0 0% 98%;
  --primary: 152 69% 41%;
  --primary-foreground: 0 0% 98%;
  --secondary: 220 15% 12%;
  --secondary-foreground: 0 0% 98%;
  --muted: 220 15% 12%;
  --muted-foreground: 220 10% 50%;
  --accent: 152 69% 41%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 15% 15%;
  --input: 220 15% 15%;
  --ring: 152 69% 41%;
  --radius: 0;

  /* Casino tokens */
  --gold: 45 100% 51%;
  --gold-light: 48 100% 60%;
  --gold-dark: 40 100% 40%;
  --neon-purple: 280 100% 65%;
  --neon-pink: 320 100% 60%;
  --neon-blue: 210 100% 60%;
  --casino-green: 152 69% 41%;
  --casino-red: 0 85% 55%;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(48, 100%, 60%) 0%, hsl(40, 100%, 40%) 100%);
  --gradient-neon: linear-gradient(135deg, hsl(280, 100%, 65%) 0%, hsl(320, 100%, 60%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 6%) 0%, hsl(220, 20%, 2%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(220, 15%, 10%) 0%, hsl(220, 15%, 6%) 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, hsl(152, 50%, 15%) 0%, hsl(220, 20%, 4%) 70%);

  /* Shadows */
  --shadow-gold: 0 0 30px hsl(45, 100%, 51%, 0.3);
  --shadow-neon: 0 0 40px hsl(152, 69%, 41%, 0.4);
  --shadow-card: 0 10px 40px hsl(0, 0%, 0%, 0.5);

  /* Glass */
  --glass-bg: hsl(220, 15%, 8%, 0.8);
  --glass-border: hsl(220, 15%, 20%, 0.5);

  /* Sidebar */
  --sidebar-background: 220 15% 6%;
  --sidebar-foreground: 0 0% 98%;
  --sidebar-primary: 152 69% 41%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 152 69% 41%;
  --sidebar-accent-foreground: 0 0% 98%;
  --sidebar-border: 220 15% 15%;
  --sidebar-ring: 152 69% 41%;
}

/* ===================================================================
   BASE STYLES
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: hsl(var(--border));
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: hsl(var(--foreground));
}

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

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

/* ===================================================================
   LAYOUT
   =================================================================== */
.site-wrapper {
  min-height: 100vh;
  background-color: hsl(var(--background));
}

.site-main {
  max-width: 72rem; /* 6xl = 1152px */
  margin: 0 auto;
  padding: 6rem 1rem 0;
}

@media (min-width: 1024px) {
  .site-main {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.site-main > * + * {
  margin-top: 2rem;
}

/* ===================================================================
   NAVIGATION - TOP NAVBAR
   =================================================================== */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--card) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

.top-navbar-inner {
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .top-navbar-inner {
    padding: 0 1.5rem;
  }
}

.top-navbar-row {
  display: flex;
  align-items: center;
  height: 4rem;
  position: relative;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  left: 0;
}

.navbar-logo img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
}

.navbar-logo-text {
  display: none;
}

@media (min-width: 640px) {
  .navbar-logo-text {
    display: block;
  }
}

.navbar-logo-text .brand-top {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-logo-text .brand-bottom {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.625rem;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Desktop nav links */
.navbar-desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

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

.navbar-desktop-nav a,
.navbar-desktop-nav .mega-menu-trigger {
  padding: 0.5rem 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar-desktop-nav a:hover,
.navbar-desktop-nav .mega-menu-trigger:hover {
  color: hsl(var(--primary));
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  position: absolute;
  right: 0;
  display: block;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem;
  cursor: pointer;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.mobile-menu.is-open {
  display: block;
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.mobile-menu a:hover {
  color: hsl(var(--primary));
}

/* Mega menu dropdown */
.mega-menu-wrapper {
  position: relative;
}

.mega-menu-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  min-width: 600px;
  z-index: 60;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mega-menu-wrapper:hover .mega-menu-dropdown {
  display: block;
}

.mega-menu-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.mega-menu-grid.cols-1 {
  grid-template-columns: 1fr;
  min-width: 280px;
}

.mega-menu-column h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.mega-menu-column a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}

.mega-menu-column a:hover {
  color: hsl(var(--primary));
}

/* ===================================================================
   SIDEBAR
   =================================================================== */
.site-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .site-sidebar {
    display: block;
    width: 16rem;
    background-color: hsl(var(--card) / 0.5);
    border-right: 1px solid hsl(var(--border));
    min-height: 100vh;
    flex-shrink: 0;
    padding: 1rem;
  }
}

.sidebar-search input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.sidebar-search input::placeholder {
  color: hsl(var(--muted-foreground));
}

.sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s, background-color 0.15s;
}

.sidebar-nav a:hover {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

.sidebar-card {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.05));
}

.sidebar-card h4 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.sidebar-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background-color: hsl(var(--muted) / 0.3);
  border-top: 1px solid hsl(var(--border));
  margin-top: 3rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

@media (min-width: 1024px) {
  .footer-inner {
    padding: 3rem 1.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

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

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-logo img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}

.footer-brand-logo span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  text-transform: uppercase;
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background-color: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer-column h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li + li {
  margin-top: 0.625rem;
}

.footer-column a {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
}

.footer-bottom-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

/* ===================================================================
   COMPONENTS
   =================================================================== */

/* Card */
.sh-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  overflow: hidden;
}

.sh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border-color: hsl(var(--primary) / 0.5);
}

/* Casino Card */
.casino-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.casino-card:hover {
  border-color: hsl(var(--primary) / 0.5);
}

.casino-card .card-badge {
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.casino-card .card-badge.has-badge {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.25rem 0.5rem;
}

.casino-card .card-body {
  padding: 1.25rem;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.casino-card .card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.casino-card .card-logo {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  flex-shrink: 0;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.casino-card .card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.casino-card .card-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
}

.casino-card .card-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.casino-card .card-bonus {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.casino-card .card-stats {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.casino-card .card-stats .stat-label {
  color: hsl(var(--muted-foreground));
}

.casino-card .card-stats .stat-value {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.casino-card .card-stats .stat-highlight {
  color: hsl(var(--primary));
  font-weight: 500;
}

.casino-card .card-actions {
  margin-top: auto;
}

.casino-card .card-disclaimer {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
  margin-top: 0.75rem;
}

/* Game Category Card */
.game-category-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
}

@media (min-width: 640px) {
  .game-category-card.pillar {
    aspect-ratio: 16/9;
  }
}

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

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

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

.game-category-card .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Review Card */
.review-card {
  background-color: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border));
  transition: all 0.3s;
  overflow: hidden;
}

.review-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.review-card.is-top-pick {
  border-top: none;
}

.review-card .top-pick-banner {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(152, 60%, 35%));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  text-align: center;
}

.review-card .review-body {
  padding: 1rem 1.25rem;
}

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

.review-card .review-logo {
  width: 5rem;
  height: 5rem;
  background-color: hsl(var(--muted) / 0.5);
  overflow: hidden;
  flex-shrink: 0;
}

.review-card .review-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card .review-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.review-card .review-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: hsl(var(--primary) / 0.1);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.review-card .review-bonus {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

.review-card .review-desc {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.review-card .review-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.review-card .stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.stat-pill.provider { background-color: hsl(217 91% 60% / 0.1); color: hsl(217, 80%, 70%); }
.stat-pill.max-win  { background-color: hsl(38 92% 50% / 0.1);  color: hsl(38, 80%, 70%);  }
.stat-pill.volatility { background-color: hsl(270 91% 65% / 0.1); color: hsl(270, 80%, 75%); }
.stat-pill.min-bet  { background-color: hsl(152 69% 41% / 0.1); color: hsl(152, 60%, 60%); }

.review-card .review-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.review-card .feature-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  background-color: hsl(var(--muted) / 0.5);
  color: hsl(var(--muted-foreground));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background-color: hsl(var(--primary) / 0.9);
}

.btn-gold {
  background: var(--gradient-gold);
  color: hsl(220, 20%, 10%);
  font-weight: 700;
}

.btn-gold:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn-outline:hover {
  border-color: hsl(var(--primary) / 0.5);
  color: hsl(var(--primary));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--muted-foreground));
}

.btn-ghost:hover {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Section headings */
.section-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  text-transform: uppercase;
}

/* ===================================================================
   GRID LAYOUTS
   =================================================================== */
.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.grid-categories-pillar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.grid-categories-popular {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

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

/* ===================================================================
   WELCOME / HERO SECTION
   =================================================================== */
.welcome-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0.5rem 0;
}

@media (min-width: 1024px) {
  .welcome-section {
    flex-direction: row;
  }
}

.welcome-content {
  flex: 1;
}

.welcome-content h1 {
  font-size: 1.5rem;
  line-height: 1.15;
}

@media (min-width: 1024px) {
  .welcome-content h1 {
    font-size: 2.25rem;
  }
}

.welcome-content h1 .text-primary {
  color: hsl(var(--primary));
}

.welcome-divider {
  height: 2px;
  width: 4rem;
  background-color: hsl(var(--primary));
  margin: 0.5rem 0;
}

.welcome-content p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 36rem;
  padding-top: 0.25rem;
}

@media (min-width: 1024px) {
  .welcome-content p {
    font-size: 1rem;
  }
}

.welcome-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  flex-shrink: 0;
}

.welcome-stat {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card) / 0.3);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.welcome-stat .stat-value {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  line-height: 1;
}

.welcome-stat .stat-label {
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  line-height: 1.2;
}

.welcome-featured {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .welcome-featured {
    width: 280px;
  }
}

.welcome-featured .featured-badge {
  display: inline-block;
  background-color: hsl(var(--primary));
  padding: 0.25rem 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.welcome-featured .featured-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.welcome-featured .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-featured .featured-body {
  padding: 0.75rem;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-top: none;
}

.welcome-featured .featured-title {
  font-size: 1rem;
  line-height: 1.2;
}

.welcome-featured .featured-provider {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.welcome-featured .featured-meta {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin: 0.5rem 0;
}

.welcome-featured .featured-actions {
  display: flex;
  gap: 0.5rem;
}

.welcome-featured .featured-actions a,
.welcome-featured .featured-actions button {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===================================================================
   GAME TYPES EXPLAINER
   =================================================================== */
.game-type-card {
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.game-type-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.game-type-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.game-type-card p {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ===================================================================
   BONUS TYPES HUB
   =================================================================== */
.bonus-card {
  display: block;
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  padding: 1rem;
  transition: border-color 0.2s;
}

.bonus-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.bonus-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.bonus-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ===================================================================
   PROVIDER SPOTLIGHT
   =================================================================== */
.provider-card {
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.provider-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.provider-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.provider-card .provider-specialty {
  font-size: 0.75rem;
  color: hsl(var(--primary));
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.provider-card p {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ===================================================================
   RESPONSIBLE GAMING
   =================================================================== */
.responsible-gaming {
  background: linear-gradient(135deg, hsl(var(--card) / 0.5), hsl(var(--card) / 0.3));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
}

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

.responsible-gaming h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.responsible-gaming > p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.rg-tip {
  background-color: hsl(var(--background) / 0.5);
  border: 1px solid hsl(var(--border));
  padding: 1rem;
}

.rg-tip h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.rg-tip p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ===================================================================
   GLOSSARY
   =================================================================== */
.glossary-term {
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  padding: 1rem;
  transition: border-color 0.2s;
}

.glossary-term:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.glossary-term h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.glossary-term p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ===================================================================
   FAQ / ACCORDION
   =================================================================== */
.faq-section {
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
}

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

.faq-item {
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.5);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
}

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

.faq-question .chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* ===================================================================
   GUIDE CARDS
   =================================================================== */
.guide-card {
  background-color: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.guide-card .guide-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.guide-card:hover .guide-image img {
  transform: scale(1.05);
}

.guide-card .guide-body {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-card .guide-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.guide-card .guide-category {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.125rem 0.375rem;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  text-transform: uppercase;
}

.guide-card .guide-difficulty {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.125rem 0.375rem;
  background-color: hsl(var(--muted) / 0.5);
  color: hsl(var(--muted-foreground));
}

.guide-card h3 {
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}

.guide-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  flex: 1;
}

.guide-card .guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  color: hsl(var(--muted-foreground));
}

.guide-card .guide-read-link {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* ===================================================================
   UTILITY CLASSES
   =================================================================== */
.text-primary { color: hsl(var(--primary)); }
.text-muted { color: hsl(var(--muted-foreground)); }
.text-gold { color: hsl(var(--gold)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }

.text-gold-gradient {
  background: linear-gradient(135deg, hsl(45, 100%, 70%) 0%, hsl(43, 96%, 56%) 50%, hsl(38, 90%, 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.glow-gold { box-shadow: var(--shadow-gold); }
.glow-neon { box-shadow: var(--shadow-neon); }
.glow-text-gold { text-shadow: 0 0 20px hsl(43, 96%, 56%, 0.5), 0 0 40px hsl(43, 96%, 56%, 0.3); }

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes jackpotPulse {
  0%, 100% { box-shadow: 0 0 20px hsl(43, 96%, 56%, 0.4), 0 0 40px hsl(43, 96%, 56%, 0.2); }
  50% { box-shadow: 0 0 40px hsl(43, 96%, 56%, 0.6), 0 0 80px hsl(43, 96%, 56%, 0.4); }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, hsl(43, 96%, 56%, 0.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
.animate-fade-in-up { animation: fadeInUp 0.5s ease-out forwards; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }
.jackpot-glow { animation: jackpotPulse 2s ease-in-out infinite; }

/* ===================================================================
   SCROLLBAR
   =================================================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: hsl(var(--background)); }
::-webkit-scrollbar-thumb { background: hsl(var(--muted)); }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--primary) / 0.5); }
