/* LolaJack Casino - Custom Styles */
/* Italian Adventures Theme - Tomb Raider Style */

:root {
  --primary-blue: #0a1628;
  --secondary-blue: #1a3a5c;
  --accent-gold: #d4a853;
  --accent-copper: #b87333;
  --text-light: #f0f4f8;
  --text-muted: #94a3b8;
  --gradient-adventure: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0d2440 100%);
  --gradient-gold: linear-gradient(135deg, #d4a853 0%, #b87333 100%);
  --gradient-hero: linear-gradient(145deg, rgba(26, 58, 92, 0.95) 0%, rgba(10, 22, 40, 0.98) 100%);
  --shadow-glow: 0 0 40px rgba(212, 168, 83, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gradient-adventure);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

/* Prose Styling for Readability */
.prose {
  max-width: 75ch;
  color: var(--text-light);
  line-height: 1.75;
}

.prose h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  letter-spacing: -0.025em;
}

.prose h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.prose p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.prose a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

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

.prose strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Keyframe Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 83, 0.4); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 83, 0.7), 0 0 60px rgba(212, 168, 83, 0.3); }
}

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

@keyframes parallax-drift {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-5px); }
  50% { transform: translateX(0) translateY(-10px); }
  75% { transform: translateX(-10px) translateY(-5px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes badge-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Animation Classes */
.animate-float {
  animation: float 4s ease-in-out infinite;
}

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

.animate-shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.animate-parallax {
  animation: parallax-drift 8s ease-in-out infinite;
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}

.animate-fade-in {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-badge {
  animation: badge-bounce 2s ease-in-out infinite;
}

/* Sticky Header */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  transition: all 0.3s ease;
}

.header-sticky.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Navigation */
.nav-menu {
  display: none;
}

.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 2rem;
  }
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

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

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--gradient-gold);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--accent-gold);
  font-weight: 600;
  border: 2px solid var(--accent-gold);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--accent-gold);
  color: var(--primary-blue);
}

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

/* Hero Section */
.hero-section {
  margin: 6rem 1rem 2rem;
  padding: 2.5rem 1.5rem;
  background: var(--gradient-hero);
  border-radius: 2rem;
  border: 1px solid rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 115, 51, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-section {
    margin: 6rem 2rem 3rem;
    padding: 4rem 3rem;
    border-radius: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    margin: 7rem 4rem 4rem;
    padding: 5rem 4rem;
  }
}

/* Cards */
.card {
  background: rgba(26, 58, 92, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 83, 0.4);
  box-shadow: var(--shadow-glow);
}

/* Slot Cards */
.slot-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.1);
  transition: all 0.3s ease;
}

.slot-card:hover {
  transform: scale(1.03);
  border-color: rgba(212, 168, 83, 0.5);
  box-shadow: 0 12px 40px rgba(212, 168, 83, 0.2);
}

.slot-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.slot-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-rtp { background: #10b981; color: white; }
.badge-jackpot { background: #f59e0b; color: white; }
.badge-bonus { background: #8b5cf6; color: white; }
.badge-popular { background: #ef4444; color: white; }

/* Feature Cards */
.feature-card {
  padding: 2rem;
  background: rgba(26, 58, 92, 0.4);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(26, 58, 92, 0.6);
  border-color: rgba(212, 168, 83, 0.3);
}

.feature-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Provider Cloud */
.provider-btn {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(26, 58, 92, 0.6);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 9999px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.provider-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Marquee */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  padding: 1rem 0;
}

.marquee-content {
  display: inline-flex;
  gap: 3rem;
}

/* Review Cards */
.review-card {
  padding: 1.5rem;
  background: rgba(26, 58, 92, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 1.25rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}

/* Author Section */
.author-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(26, 58, 92, 0.5);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 1.5rem;
  align-items: flex-start;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  flex-shrink: 0;
}

/* CTA Banner */
.cta-banner {
  background: var(--gradient-gold);
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: rotate-slow 20s linear infinite;
}

/* Footer */
.footer {
  background: rgba(10, 22, 40, 0.9);
  border-top: 1px solid rgba(212, 168, 83, 0.15);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

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

/* Feature Overlay */
.feature-overlay {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}

.feature-overlay img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.feature-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, transparent 100%);
}

/* Utilities */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(26, 58, 92, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--accent-gold);
  transition: all 0.3s ease;
}

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

/* SVG Patterns */
.pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23d4a853' fill-opacity='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsive Grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

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

/* 18+ Badge */
.badge-18 {
  width: 48px;
  height: 48px;
  border: 3px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Scroll animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

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