/* Ancient Greek Theme - Static Site Styles */

:root {
  /* Colors */
  --background: hsl(40, 30%, 96%);
  --foreground: hsl(30, 15%, 15%);
  --card: hsl(40, 25%, 98%);
  --card-foreground: hsl(30, 15%, 15%);
  --primary: hsl(45, 85%, 45%);
  --primary-foreground: hsl(40, 25%, 98%);
  --secondary: hsl(30, 20%, 85%);
  --secondary-foreground: hsl(30, 25%, 25%);
  --muted: hsl(40, 15%, 90%);
  --muted-foreground: hsl(30, 10%, 45%);
  --accent: hsl(210, 60%, 45%);
  --accent-foreground: hsl(40, 25%, 98%);
  --border: hsl(40, 20%, 85%);
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, hsl(45, 85%, 45%), hsl(38, 75%, 55%));
  --gradient-marble: linear-gradient(180deg, hsl(40, 30%, 96%), hsl(40, 25%, 92%));
  
  /* Shadows */
  --shadow-gold: 0 8px 24px -8px hsla(45, 85%, 45%, 0.4);
  --shadow-elegant: 0 4px 16px -4px hsla(30, 15%, 15%, 0.15);
  
  --radius: 0.75rem;
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 248, 244, 0.95);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.logo:hover {
  opacity: 0.9;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-desktop a:hover {
  color: var(--primary);
  opacity: 1;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--primary-foreground);
  margin-left: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--foreground);
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: rgba(251, 248, 244, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.1);
  z-index: 40;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

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

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

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius);
  transition: all 0.3s;
  display: block;
}

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

.nav-mobile .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--primary-foreground);
  margin: 0.5rem 1rem;
  text-align: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/hero-background.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(30, 20, 10, 0.3),
    rgba(30, 20, 10, 0.5),
    rgba(251, 248, 244, 1));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

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

.btn-hero {
  position: relative;
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, hsl(45, 95%, 50%), hsl(30, 95%, 55%), hsl(45, 95%, 50%));
  background-size: 200% 200%;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px -8px hsla(45, 95%, 50%, 0.6),
              0 0 0 0 hsla(45, 95%, 50%, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 2px solid hsla(45, 95%, 60%, 0.5);
  animation: shimmer 3s ease-in-out infinite;
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 48px -12px hsla(45, 95%, 50%, 0.8),
              0 0 32px 0 hsla(45, 95%, 50%, 0.6);
  animation: shimmer 1.5s ease-in-out infinite;
}

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

/* Cards */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content {
  padding: 2rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  margin-top: auto;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-age-notice {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--primary);
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.responsible-gaming-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.responsible-gaming-logos a {
  transition: opacity 0.3s;
}

.responsible-gaming-logos a:hover {
  opacity: 0.8;
}

.responsible-gaming-logos img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.gordon-moody-wrapper {
  background: black;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.footer-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 2rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--shadow-elegant);
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 90;
  box-shadow: 0 -4px 16px -4px rgba(0, 0, 0, 0.1);
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
}

/* Slot Game */
.slot-container {
  background: linear-gradient(to bottom, rgba(199, 158, 64, 0.2), rgba(84, 114, 171, 0.2));
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.slot-reel {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.slot-symbol {
  background: var(--card);
  border-radius: var(--radius);
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid rgba(199, 158, 64, 0.2);
  transition: all 0.3s;
}

.slot-symbol.spinning {
  animation: pulse 0.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.slot-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bet-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bet-display {
  width: 5rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
}

/* Utilities */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Responsive */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    min-height: 400px;
  }
  
  .slot-reels {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .slot-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}