/* Custom CSS for PlazaGaming.fr */
/* Tailwind is loaded via CDN in HTML */

/* Custom Properties */
:root {
  --primary-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  --accent-gold: #ffd700;
  --accent-emerald: #10b981;
  --accent-purple: #8b5cf6;
  --card-bg: rgba(30, 27, 75, 0.95);
  --card-border: rgba(139, 92, 246, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a5b4fc;
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.4);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--primary-gradient);
  min-height: 100vh;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1b4b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b5cf6, #6366f1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #a78bfa, #818cf8);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
  }
}

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

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Utility Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

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

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Glass Effect */
.glass {
  background: rgba(30, 27, 75, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #ffd700, #f59e0b, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

/* Card Styles */
.casino-card {
  background: linear-gradient(145deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.9));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b5cf6, #ffd700, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.casino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
}

.casino-card:hover::before {
  opacity: 1;
}

/* Recommended Badge */
.badge-recommended {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #1e1b4b;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Star Rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star-rating img {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

/* CTA Button */
.btn-cta {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.btn-cta::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-cta:hover::after {
  transform: translateX(4px);
}

/* Bonus Text */
.bonus-text {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Payment Icons */
.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 32px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.payment-icons img:hover {
  filter: grayscale(0);
}

/* Footer Styles */
.footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.footer-partners a {
  transition: all 0.3s ease;
  opacity: 0.7;
}

.footer-partners a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-partners img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Hero Section */
.hero-gradient {
  background: 
    radial-gradient(ellipse at top right, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  color: #10b981;
}

.feature-item::before {
  content: '✓';
  font-weight: bold;
}

/* Top Casino Section */
.top-section {
  background: linear-gradient(180deg, rgba(30, 27, 75, 0.5) 0%, rgba(30, 27, 75, 0.8) 100%);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Info Cards in Footer */
.info-card {
  background: rgba(30, 27, 75, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 24px;
}

.info-card h3 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card p {
  color: #a5b4fc;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Legal Links */
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.legal-links a {
  color: #a5b4fc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffd700;
}

/* Age Badge */
.age-badge {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-section {
    padding: 24px;
  }
  
  .casino-card {
    border-radius: 12px;
  }
  
  .feature-list {
    justify-content: center;
  }
}

/* Content Page Styles */
.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: #ffd700;
}

.content-page h2 {
  font-size: 1.5rem;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #a78bfa;
}

.content-page p {
  margin-bottom: 16px;
  color: #e2e8f0;
  line-height: 1.8;
}

.content-page .lead {
  font-size: 1.125rem;
  color: #a5b4fc;
  margin-bottom: 32px;
}

/* Casino Logo in Cards */
.casino-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

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

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  
  .desktop-nav {
    display: none;
  }
}

/* Listing Number */
.listing-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
  margin: 24px 0;
}

/* Loading State */
.skeleton {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.1) 25%, rgba(139, 92, 246, 0.2) 50%, rgba(139, 92, 246, 0.1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}


