/*
 * Mythos Palace - Luxury Casino & Restaurant
 * Mobile-first CSS with Greek mythology theme
 */

/* ============================================
   CSS VARIABLES & THEME
   ============================================ */

:root {
  /* Colors */
  --background: #faf8f5;
  --foreground: #1a1412;
  --card: #ffffff;
  --card-foreground: #1a1412;
  --popover: #ffffff;
  --popover-foreground: #1a1412;
  --primary: #c17f3e;
  --primary-foreground: #ffffff;
  --secondary: #f4ede4;
  --secondary-foreground: #2c2318;
  --muted: #f4ede4;
  --muted-foreground: #6b5d4f;
  --accent: #8b6b47;
  --accent-foreground: #ffffff;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5dace;
  --input: #f9f6f1;
  --ring: #c17f3e;
  
  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

[data-theme="dark"] {
  --background: #0f0d0b;
  --foreground: #f5f1ec;
  --card: #1a1612;
  --card-foreground: #f5f1ec;
  --popover: #1a1612;
  --popover-foreground: #f5f1ec;
  --primary: #c17f3e;
  --primary-foreground: #ffffff;
  --secondary: #2a231c;
  --secondary-foreground: #e5dfd6;
  --muted: #2a231c;
  --muted-foreground: #9a8a79;
  --accent: #6b5438;
  --accent-foreground: #f5f1ec;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #2a231c;
  --input: #1f1a15;
  --ring: #c17f3e;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Media elements */
img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Flex/grid children */
[class*="grid"] > *, [class*="flex"] > * {
  min-width: 0;
}

/* Code blocks */
pre, code, .code-block {
  max-width: 100%;
  overflow-x: auto;
}

/* Text */
p, li, td, th {
  overflow-wrap: break-word;
}

/* Forms */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  max-width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--foreground);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-2xl);
  }
}

.section-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--primary-foreground);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary-sm {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-secondary-sm {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-success {
  background: #22c55e;
  color: white;
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.1rem;
}

.btn-danger {
  background: var(--destructive);
  color: var(--destructive-foreground);
  padding: var(--space-md) var(--space-2xl);
  font-size: 1.1rem;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .header.scrolled {
  background: rgba(26, 22, 18, 0.95);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
  gap: var(--space-sm);
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .header-container {
    gap: var(--space-lg);
  }
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--foreground);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 0;
}

.header-logo {
  flex-shrink: 1;
  min-width: 0;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: none;
}

@media (min-width: 768px) {
  .logo-text {
    display: inline;
  }
}

.nav-desktop {
  display: none;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
}

.nav-menu a {
  color: var(--foreground);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 1;
  min-width: 0;
}

.header-contact {
  display: none;
  min-width: 0;
}

@media (min-width: 1024px) {
  .header-contact {
    display: block;
    margin-right: var(--space-md);
  }
}

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

.header-actions .btn {
  display: none;
  min-width: 0;
  flex-shrink: 1;
}

@media (min-width: 768px) {
  .header-actions .btn-primary {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .header-actions .btn {
    display: inline-flex;
  }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: var(--muted);
  border-color: var(--primary);
}

.theme-icon {
  transition: opacity var(--transition-fast);
}

.sun-icon {
  display: none;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

.mobile-menu-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}

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

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all var(--transition-base);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

.nav-mobile {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  overflow-x: hidden;
}

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

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

.mobile-menu {
  list-style: none;
  padding: var(--space-lg);
}

.mobile-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  display: block;
  padding: var(--space-md);
  color: var(--foreground);
  font-weight: 500;
}

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

.mobile-cta {
  border: none;
  margin-top: var(--space-md);
}

/* ============================================
   HERO SECTION
   ============================================ */

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

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: var(--space-2xl) 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffd700, #c17f3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ============================================
   CASINO SECTION
   ============================================ */

.casino-section {
  padding: var(--space-3xl) 0;
  background: var(--background);
}

.section-content h2 {
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
}

.features-list {
  list-style: none;
  margin: var(--space-xl) 0;
}

.features-list li {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md);
  background: var(--muted);
  border-radius: var(--radius-lg);
  flex: 1 1 120px;
  min-width: 0;
}

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

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.age-reminder {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.age-badge-small {
  background: white;
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.section-gallery {
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .section-gallery {
    margin-top: 0;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   RESTAURANT SECTION
   ============================================ */

.restaurant-section {
  padding: var(--space-3xl) 0;
  background: var(--card);
}

.restaurant-hero {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.restaurant-hero h2 {
  color: var(--primary);
}

.restaurant-hero-image {
  width: 100%;
  max-width: 1000px;
  margin: var(--space-xl) auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.restaurant-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

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

.feature-card {
  padding: var(--space-xl);
  background: var(--background);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-card-icon {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  color: var(--foreground);
  margin-bottom: var(--space-md);
}

.testimonials {
  margin: var(--space-3xl) 0;
  text-align: center;
}

.testimonials h3 {
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.testimonial-card {
  padding: var(--space-xl);
  background: var(--background);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  min-width: 0;
}

.stars {
  color: #ffd700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  color: var(--muted-foreground);
}

.testimonial-author {
  font-size: 0.875rem;
  color: var(--foreground);
}

.restaurant-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  .restaurant-cta {
    flex-direction: row;
  }
}

/* ============================================
   EXPERIENCES SECTION
   ============================================ */

.experiences-section {
  padding: var(--space-3xl) 0;
  background: var(--background);
}

.experiences-section h2 {
  text-align: center;
  color: var(--primary);
}

.experiences-section .section-subtitle {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.experiences-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

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

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

.experience-card {
  background: var(--card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  min-width: 0;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.experience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.experience-content {
  padding: var(--space-xl);
}

.experience-icon {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.experience-content h3 {
  margin-bottom: var(--space-md);
}

.events-timeline {
  margin: var(--space-3xl) 0;
  padding: var(--space-2xl);
  background: var(--card);
  border-radius: var(--radius-xl);
}

.events-timeline h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-2xl);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.timeline-item {
  padding: var(--space-lg);
  background: var(--background);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  min-width: 0;
}

.timeline-date {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0;
}

.experiences-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: var(--space-3xl) 0;
  background: var(--card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

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

.contact-map h2 {
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-lg);
  min-width: 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.location-info {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--background);
  border-radius: var(--radius-lg);
}

.location-info svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-form-wrapper h2 {
  color: var(--primary);
  margin-bottom: var(--space-xl);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

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

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--background);
  border-radius: var(--radius-lg);
}

.contact-info-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-hours {
  grid-column: 1 / -1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
}

.required {
  color: var(--destructive);
}

.form-group input,
.form-group textarea {
  padding: var(--space-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--input);
  color: var(--foreground);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 127, 62, 0.1);
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--destructive);
}

.error-message {
  color: var(--destructive);
  font-size: 0.875rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-success {
  padding: var(--space-lg);
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.form-success svg {
  color: #22c55e;
  flex-shrink: 0;
}

.contact-security {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--muted);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-lg);
}

.contact-security svg {
  color: var(--primary);
  flex-shrink: 0;
}

.final-cta {
  margin-top: var(--space-xl);
  text-align: center;
}

/* ============================================
   RESPONSIBLE GAMING SECTION
   ============================================ */

.responsible-section {
  padding: var(--space-3xl) 0;
  background: var(--background);
}

.responsible-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
  font-size: 1.1rem;
  color: var(--muted-foreground);
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

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

.responsible-card {
  padding: var(--space-2xl);
  background: var(--card);
  border-radius: var(--radius-xl);
  border: 2px solid var(--border);
  text-align: center;
  min-width: 0;
}

.age-badge-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
}

.responsible-icon {
  color: var(--primary);
  margin: 0 auto var(--space-lg);
}

.responsible-card h3 {
  color: var(--foreground);
  margin-bottom: var(--space-md);
}

.responsible-tips {
  text-align: left;
  list-style: none;
  margin: var(--space-md) 0;
}

.responsible-tips li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-sm);
}

.responsible-tips li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.compliance-logo {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.compliance-logo svg {
  margin: 0 auto var(--space-sm);
  color: var(--primary);
}

.compliance-logo p {
  font-weight: 600;
  margin: 0;
}

.about-content {
  max-width: 900px;
  margin: var(--space-3xl) auto;
  padding: var(--space-2xl);
  background: var(--card);
  border-radius: var(--radius-xl);
}

.about-content h3 {
  color: var(--primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.about-content h3:first-child {
  margin-top: 0;
}

.unique-features {
  list-style: none;
  margin: var(--space-lg) 0;
}

.unique-features li {
  padding-left: var(--space-xl);
  position: relative;
  margin-bottom: var(--space-md);
}

.unique-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

.disclaimer {
  padding: var(--space-xl);
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  display: flex;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

[data-theme="dark"] .disclaimer {
  background: #422006;
  border-color: #f59e0b;
}

.disclaimer svg {
  color: #f59e0b;
  flex-shrink: 0;
}

.disclaimer p {
  margin: 0;
  color: #78350f;
}

[data-theme="dark"] .disclaimer p {
  color: #fde68a;
}

.responsible-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: linear-gradient(135deg, #1a1412, #2c2318);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

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

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

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
  display: inline;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: flex-start;
}

.footer-contact svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-hours {
  list-style: none;
}

.footer-hours li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xs);
}

.hours-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

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

.footer-bottom-left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-center {
  display: flex;
  justify-content: center;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
}

.payment-methods {
  display: flex;
  gap: var(--space-xs);
}

.certification-badge,
.ssl-badge {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.certification-badge svg,
.ssl-badge svg {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom-right {
  display: flex;
  justify-content: flex-end;
}

.age-reminder-footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(193, 127, 62, 0.2);
  border-radius: var(--radius-md);
}

.age-badge-footer {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.age-reminder-footer span {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

/* ============================================
   MODALS
   ============================================ */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  overflow-y: auto;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
  min-width: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-modal-content {
  text-align: center;
}

.age-badge {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--destructive), #b91c1c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
}

.age-modal h2 {
  color: var(--foreground);
  margin-bottom: var(--space-md);
}

.age-subtitle {
  font-weight: 600;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .age-buttons {
    flex-direction: row;
  }
}

.legal-modal-content {
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--foreground);
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary);
}

.legal-content {
  padding: var(--space-lg);
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.active {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

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

.cookie-content p {
  margin: 0;
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ============================================
   FLOATING CTA
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  padding: var(--space-md) var(--space-xl);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50px;
  box-shadow: var(--shadow-xl);
  font-weight: 700;
  z-index: 99;
  animation: pulse 2s infinite;
  text-decoration: none;
  transition: all var(--transition-base);
}

.floating-cta:hover {
  transform: scale(1.05);
  color: white;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(193, 127, 62, 0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(193, 127, 62, 0);
  }
}

/* ============================================
   UTILITIES
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}