/*
 * Helios Grand - Premium Casino & Restaurant Landing Page
 * Mobile-first responsive design
 */

/* ============================================
   CSS VARIABLES - Theme Support
   ============================================ */

:root {
  /* Colors - Light Theme */
  --background: #fafaf9;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --popover: #ffffff;
  --popover-foreground: #1c1917;
  --primary: #d97706;
  --primary-foreground: #fafaf9;
  --secondary: #fef3c7;
  --secondary-foreground: #78350f;
  --muted: #f5f5f4;
  --muted-foreground: #57534e;
  --accent: #fbbf24;
  --accent-foreground: #78350f;
  --destructive: #dc2626;
  --destructive-foreground: #fafaf9;
  --border: #e7e5e4;
  --input: #f5f5f4;
  --ring: #d97706;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
}

[data-theme="dark"] {
  --background: #0c0a09;
  --foreground: #fafaf9;
  --card: #1c1917;
  --card-foreground: #fafaf9;
  --popover: #1c1917;
  --popover-foreground: #fafaf9;
  --primary: #d97706;
  --primary-foreground: #fafaf9;
  --secondary: #292524;
  --secondary-foreground: #fef3c7;
  --muted: #292524;
  --muted-foreground: #a8a29e;
  --accent: #78350f;
  --accent-foreground: #fef3c7;
  --destructive: #dc2626;
  --destructive-foreground: #fafaf9;
  --border: #292524;
  --input: #1c1917;
  --ring: #d97706;
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */

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

img, video, iframe, embed, object, svg {
  max-width: 100%;
  height: auto;
}

[class*="grid"] > *,
[class*="flex"] > *,
.game-cards > *,
.amenities-list > *,
.footer-grid > * {
  min-width: 0;
}

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

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

input, textarea, select {
  max-width: 100%;
}

/* ============================================
   BASE STYLES
   ============================================ */

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-width: 320px;
  overflow-x: hidden;
}

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

/* ============================================
   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: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

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

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

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

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

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

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

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

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

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

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

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

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

.btn-block {
  width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 119, 6, 0.2);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(28, 25, 23, 1);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

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

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-list a {
  color: var(--muted-foreground);
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-base);
}

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

.nav-list a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.phone-link {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

.phone-link svg {
  color: var(--primary);
}

.phone-number {
  white-space: nowrap;
}

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

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

.theme-toggle .moon-icon {
  display: none;
}

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

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

.btn-header {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: all var(--transition-base);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-menu[aria-hidden="false"] {
  max-height: 500px;
}

.mobile-nav-list {
  list-style: none;
  padding: var(--space-md);
}

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

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list a {
  display: block;
  padding: var(--space-md);
  color: var(--foreground);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.mobile-nav-list a:hover {
  background-color: var(--muted);
  color: var(--primary);
  padding-left: var(--space-lg);
}

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

/* ============================================
   MODAL - Age Verification
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: var(--space-md);
  opacity: 1;
  transition: opacity var(--transition-slow);
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  animation: modalSlideIn var(--transition-slow) ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-modal-icon {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

.age-modal h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.age-modal p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-lg);
}

.age-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.age-modal-buttons .btn {
  width: 100%;
  justify-content: center;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--card);
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-banner-content p {
  flex: 1;
  min-width: 250px;
  font-size: 0.875rem;
  margin: 0;
}

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

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

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.95) 0%, rgba(12, 10, 9, 0.7) 50%, rgba(12, 10, 9, 0.4) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: var(--space-2xl) var(--space-md);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(250, 250, 249, 0.9);
  margin-bottom: var(--space-xl);
  font-weight: 300;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(250, 250, 249, 0.8);
  font-size: 0.875rem;
  text-align: center;
}

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

.scroll-indicator {
  display: inline-block;
  color: var(--primary);
  animation: bounce 2s infinite;
  cursor: pointer;
}

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

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

.casino-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, rgba(12, 10, 9, 0.95) 0%, rgba(28, 25, 23, 0.98) 100%);
  position: relative;
  overflow: hidden;
}

.casino-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(217, 119, 6, 0.03) 35px, rgba(217, 119, 6, 0.03) 70px);
  pointer-events: none;
}

.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.casino-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

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

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

.casino-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.casino-content .subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

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

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

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

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

.game-card-highlight {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-color: var(--primary);
}

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

.game-card h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.game-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.important-notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: rgba(217, 119, 6, 0.1);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.important-notice svg {
  flex-shrink: 0;
  color: var(--primary);
}

.important-notice p {
  margin: 0;
  color: var(--foreground);
  font-style: italic;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.security-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--muted);
  border-radius: var(--radius-md);
}

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

.casino-description {
  margin: var(--space-xl) 0;
  line-height: 1.8;
}

.casino-description p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
}

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

.restaurant-section {
  position: relative;
  padding: var(--space-2xl) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.restaurant-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.restaurant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.92) 0%, rgba(28, 25, 23, 0.95) 100%);
}

.restaurant-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.restaurant-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.restaurant-lead {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

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

.cuisine-types {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-heading);
}

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

.feature-box {
  background-color: rgba(28, 25, 23, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.feature-box:hover {
  background-color: rgba(28, 25, 23, 0.95);
  border-color: var(--primary);
  transform: translateY(-5px);
}

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

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.feature-box p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.chef-quote {
  position: relative;
  background-color: rgba(217, 119, 6, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.quote-icon {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  color: var(--primary);
  opacity: 0.3;
}

.chef-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--foreground);
  margin-bottom: var(--space-md);
  padding-left: 60px;
}

.chef-quote cite {
  display: block;
  text-align: right;
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
}

.restaurant-details {
  margin: var(--space-xl) 0;
  line-height: 1.8;
}

.restaurant-details h3 {
  color: var(--primary);
  margin-top: var(--space-xl);
}

.restaurant-details p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
}

.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  background-color: rgba(28, 25, 23, 0.8);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  text-align: center;
}

.award {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary);
  font-weight: 600;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.stars {
  display: flex;
  gap: 4px;
}

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

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

.satisfied-guests strong {
  color: var(--primary);
  font-size: 1.5rem;
}

.instagram-preview {
  margin: var(--space-xl) 0;
}

.instagram-preview h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

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

.instagram-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

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

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

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

/* ============================================
   EXPERIENCE SECTION
   ============================================ */

.experience-section {
  padding: var(--space-2xl) 0;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.section-header .subtitle {
  display: block;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

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

.experience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.experience-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.amenity-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.amenity-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.amenity-highlight {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-color: var(--primary);
}

.amenity-icon {
  flex-shrink: 0;
  color: var(--primary);
}

.amenity-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.amenity-content p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.upcoming-events {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

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

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

.event-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--muted);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  transition: all var(--transition-base);
}

.event-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: var(--space-sm);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  text-align: center;
}

.event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-details h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--foreground);
}

.event-details p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

.testimonials-slider {
  margin: var(--space-2xl) 0;
}

.testimonials-slider h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  font-size: 2rem;
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  opacity: 1;
  animation: testimonialFadeIn var(--transition-slow);
}

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-content .stars {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.testimonial-content cite {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-style: normal;
}

.testimonial-content cite strong {
  color: var(--foreground);
  font-size: 1.125rem;
}

.testimonial-content cite span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonial-prev,
.testimonial-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--accent);
  transform: scale(1.1);
}

.stats-counters {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-radius: var(--radius-xl);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-number::after {
  content: '+';
}

.stat-label {
  color: var(--muted-foreground);
  font-weight: 500;
}

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

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

.contact-section {
  padding: var(--space-2xl) 0;
  background-color: var(--muted);
}

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

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.directions-btn {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

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

.info-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

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

.info-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--foreground);
}

.info-content p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-xs);
}

.info-content address {
  font-style: normal;
  line-height: 1.6;
}

.info-content a {
  color: var(--primary);
  transition: color var(--transition-fast);
}

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

.location-details,
.contact-note,
.hours-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-sm);
}

.status-open {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: #22c55e;
  font-weight: 600;
}

.contact-form-wrapper {
  padding: var(--space-lg);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

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

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

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

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

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  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(217, 119, 6, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
}

.form-success svg {
  color: #22c55e;
  margin-bottom: var(--space-md);
}

.form-success h4 {
  color: var(--foreground);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--muted-foreground);
}

.social-links {
  padding: var(--space-lg);
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.social-links h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.social-icons a:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-5px);
}

.transport-info {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
}

.transport-info h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  font-size: 2rem;
}

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

.transport-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--muted);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.transport-method:hover {
  background-color: var(--card);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.transport-method svg {
  color: var(--primary);
}

.transport-method h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
  color: var(--foreground);
}

.transport-method p {
  color: var(--muted-foreground);
  margin: 0;
  font-size: 0.875rem;
}

/* ============================================
   LEGAL SECTION
   ============================================ */

.legal-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(to bottom, rgba(12, 10, 9, 0.98) 0%, rgba(28, 25, 23, 1) 100%);
  color: var(--foreground);
}

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

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

.legal-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.legal-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--primary);
}

.legal-card h3 {
  text-align: center;
  color: var(--primary);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.legal-card p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-detail {
  font-size: 0.9375rem;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.link-with-icon:hover {
  gap: var(--space-sm);
}

.legal-links {
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  text-align: center;
}

.legal-links h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

.legal-nav a,
.link-button {
  color: var(--primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.legal-nav a:hover,
.link-button:hover {
  color: var(--accent);
}

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

.certifications {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin: var(--space-2xl) 0;
  padding: var(--space-xl);
  background-color: rgba(217, 119, 6, 0.05);
  border-radius: var(--radius-lg);
}

.cert-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
  color: var(--muted-foreground);
}

.cert-logo svg {
  color: var(--primary);
  opacity: 0.8;
}

.cert-logo span {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}

.legal-content {
  margin: var(--space-2xl) 0;
  line-height: 1.8;
}

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

.legal-content h4 {
  color: var(--foreground);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  color: var(--muted-foreground);
  margin-bottom: var(--space-md);
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
  color: var(--muted-foreground);
}

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

.legal-disclaimer {
  padding: var(--space-xl);
  background-color: rgba(217, 119, 6, 0.1);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-disclaimer p {
  color: var(--foreground);
  font-weight: 600;
  margin: 0;
  line-height: 1.8;
}

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

.site-footer {
  background-color: rgba(12, 10, 9, 1);
  color: var(--muted-foreground);
  padding: var(--space-2xl) 0 var(--space-lg);
  border-top: 2px solid var(--primary);
}

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

.footer-col h4 {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

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

.footer-about .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-tagline {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: var(--space-xs);
}

.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact li {
  display: flex;
  gap: var(--space-sm);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--muted);
  color: var(--muted-foreground);
  border-radius: 50%;
  transition: all var(--transition-base);
}

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

.newsletter-signup p {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background-color: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  font-size: 0.875rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: var(--space-xl) 0;
}

.footer-legal {
  margin-bottom: var(--space-lg);
}

.footer-legal .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  background: none;
}

.footer-legal a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

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

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

.copyright,
.age-warning {
  font-size: 0.875rem;
  margin-bottom: var(--space-xs);
}

.age-warning {
  color: var(--primary);
}

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

.badge-item {
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.badge-item:hover {
  opacity: 1;
}

.footer-trust {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  margin-top: var(--space-lg);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.privacy-policy-content,
.terms-conditions-content {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background-color: var(--card);
  border-radius: var(--radius-lg);
  display: none;
}

.privacy-policy-content h3,
.terms-conditions-content h3 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

.slide-up {
  animation: slideUp var(--transition-slow) ease-out;
}

/* Scroll Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET (768px+)
   ============================================ */

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

  .main-nav {
    display: block;
  }

  .phone-link {
    display: flex;
  }

  .btn-header {
    display: inline-flex;
  }

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

  .mobile-menu {
    display: none !important;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.75rem;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .trust-badges {
    gap: var(--space-2xl);
  }

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

  .casino-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .security-features {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .restaurant-cta {
    flex-direction: row;
    justify-content: center;
  }

  .experience-layout {
    grid-template-columns: 1fr 1.5fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .map-container {
    height: 600px;
  }

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

/* ============================================
   RESPONSIVE - DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 2rem;
  }

  .casino-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

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

  .security-features {
    justify-content: space-around;
  }

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

  .testimonial-slide.active {
    flex-direction: row;
    text-align: left;
  }

  .testimonial-content {
    text-align: left;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .site-header,
  .mobile-menu,
  .theme-toggle,
  .btn,
  .modal-overlay,
  .cookie-banner,
  .scroll-indicator,
  .testimonial-controls,
  .footer-social,
  .newsletter-form {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
  }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */

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

  .scroll-indicator {
    animation: none;
  }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */

@media (prefers-contrast: high) {
  :root {
    --border: #000;
    --primary: #ff8c00;
  }

  [data-theme="dark"] {
    --border: #fff;
    --primary: #ffa500;
  }

  .btn {
    border-width: 3px;
  }
}