/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* CSS Custom Properties - Nova Paleta Atualizada */
:root {
  /* Cores Primárias - Baseadas na paleta fornecida */
  --primary-bg-start: #0d0628;   /* Azul escuro fornecido */
  --primary-bg-end: #1a0f3d;     /* Variação mais clara do azul escuro */
  --primary-purple: #9a348e;     /* Roxo fornecido */
  --primary-dark: #0d0628;       /* Azul escuro como cor principal escura */
  
  /* Cores Secundárias - Gradações da paleta fornecida */
  --secondary-beige: #f9dbbd;     /* Bege rosado fornecido */
  --secondary-orange: #fca17d;    /* Laranja claro fornecido */
  --secondary-pink: #da627d;      /* Rosa vibrante fornecido */
  --secondary-purple-light: #b854a3;  /* Variação mais clara do roxo */
  --secondary-dark-blue: #1a0b3a;     /* Variação do azul escuro */
  
  /* Cores de Destaque - Harmonizadas com a paleta */
  --accent-primary: #da627d;      /* Rosa vibrante como cor principal de destaque */
  --accent-primary-hover: #c54f6a; /* Rosa mais escuro para hover */
  --accent-secondary: #fca17d;    /* Laranja como cor secundária de destaque */
  --accent-secondary-hover: #f18a5a; /* Laranja mais escuro para hover */
  --accent-purple: #9a348e;       /* Roxo para destaques especiais */
  --accent-purple-hover: #7d2a72;  /* Roxo mais escuro para hover */
  
  /* Cores Neutras Complementares - Para equilíbrio */
  --neutral-lightest: #faf7f3;    /* Quase branco com tom quente */
  --neutral-light: #f2ebe4;       /* Bege muito claro */
  --neutral-medium: #e8ddd4;      /* Bege médio */
  --neutral-dark: #8b7b6d;        /* Marrom claro */
  --neutral-darker: #5c4d41;      /* Marrom escuro */
  
  /* Card & Interface Colors */
  --card-bg: rgba(154, 52, 142, 0.1);     /* Roxo com transparência */
  --card-border: rgba(218, 98, 125, 0.2); /* Rosa com transparência */
  --overlay-dark: rgba(13, 6, 40, 0.85);  /* Azul escuro semi-transparente */
  --overlay-light: rgba(249, 219, 189, 0.9); /* Bege claro semi-transparente */
  
  /* Text Colors - Otimizadas para contraste */
  --text-primary: #faf7f3;         /* Quase branco para texto principal */
  --text-secondary: #f2ebe4;       /* Bege claro para textos secundários */
  --text-muted: #8b7b6d;           /* Marrom claro para textos menos importantes */
  --text-accent: #da627d;          /* Rosa vibrante para acentos */
  --text-dark: #0d0628;            /* Azul escuro para texto em fundos claros */
  
  /* Badge Colors - Usando a nova paleta */
  --badge-hot: #da627d;            /* Rosa vibrante para "hot" */
  --badge-exclusive: #9a348e;      /* Roxo para "exclusive" */
  --badge-fast: #fca17d;           /* Laranja para "fast" */
  --badge-new: #b854a3;            /* Roxo claro para "new" */
  
  /* Status Colors - Harmonizadas com a paleta */
  --success: #4caf50;      /* Verde para sucesso (complementar) */
  --warning: #ff9800;      /* Laranja para aviso */
  --error: #da627d;        /* Rosa vibrante para erro */
  --info: #2196f3;         /* Azul para informação (complementar) */
  
  /* Gradientes - Usando as cores da paleta */
  --gradient-primary: linear-gradient(135deg, #0d0628 0%, #9a348e 100%);
  --gradient-warm: linear-gradient(135deg, #fca17d 0%, #da627d 100%);
  --gradient-sunset: linear-gradient(135deg, #f9dbbd 0%, #fca17d 50%, #da627d 100%);
  --gradient-royal: linear-gradient(135deg, #9a348e 0%, #0d0628 100%);

  /* Typography System */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 800;

  /* Typography Scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 28px;
  --text-4xl: 32px;
  --text-5xl: 36px;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
}

/* Global Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--gradient-primary);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Container System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* Header/Hero Section - 180px height */
.hero-section {
  height: 180px;
  background: 
    linear-gradient(var(--overlay-dark), var(--overlay-dark)),
    url('/public/images/bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: var(--text-3xl); /* 28px */
  font-weight: var(--font-weight-black); /* 800 */
  color: var(--text-primary);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: var(--text-base); /* 16px */
  font-weight: var(--font-weight-medium); /* 500 */
  color: var(--text-secondary);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Decorative Casino Elements */
.casino-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-element {
  position: absolute;
  opacity: 0.6;
  font-size: 24px;
  /* animation: float 6s ease-in-out infinite; */
}

.decoration-element:nth-child(1) {
  top: 20px;
  left: 10%;
  /* animation-delay: 0s; */
}

.decoration-element:nth-child(2) {
  top: 30px;
  right: 15%;
  /* animation-delay: 2s; */
}

.decoration-element:nth-child(3) {
  bottom: 20px;
  left: 20%;
  /* animation-delay: 4s; */
}

.decoration-element:nth-child(4) {
  bottom: 30px;
  right: 10%;
  /* animation-delay: 1s; */
}

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

/* Main Content Area */
.main-content {
  padding: 40px 0;
  position: relative;
}

/* Casino Cards Container */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

/* Casino Card Component - Responsive Layout */
.casino-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 100px;
  width: 100%;
  /* Page Load Animation - Disabled */
  opacity: 1;
  transform: translateY(0);
  /* animation: fadeInUp 0.6s ease-out forwards; */
}

.casino-card:hover {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Badge System */
.casino-badge {
  position: absolute;
  top: -8px;
  left: 16px;
  height: 24px;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  z-index: 3;
  display: flex;
  align-items: center;
}

.badge-hot {
  background: var(--badge-hot);
}

.badge-fast {
  background: var(--badge-fast);
}

.badge-exclusive {
  background: var(--badge-exclusive);
}

/* Casino Logo Container */
.casino-logo-container {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo {
  width: 100%;
  max-width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

/* Rating Section */
.casino-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 140px;
}

.rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.star {
  color: var(--secondary-orange);
  font-size: 16px;
}

.rating-text {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: var(--font-weight-medium);
}

.reviews-count {
  font-size: var(--text-xs);
  color: var(--text-primary);
}

/* Score Section */
.casino-score {
  text-align: center;
  flex-shrink: 0;
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-primary);
  display: block;
  /* animation: pulse-glow 2s ease-in-out infinite; */
  text-shadow: 0 0 8px var(--accent-primary);
}

.score-label {
  font-size: var(--text-xs);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* @keyframes pulse-glow {
  0%, 100% { 
    text-shadow: 0 0 8px var(--accent-primary);
  }
  50% { 
    text-shadow: 0 0 16px var(--accent-primary), 0 0 24px var(--accent-primary);
  }
} */

/* Bonus Information */
.casino-bonus {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 180px;
}

.bonus-main {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.bonus-extra {
  font-size: var(--text-sm);
  color: var(--secondary-orange);
  font-weight: var(--font-weight-medium);
}

/* CTA Button */
.casino-cta {
  background: var(--gradient-warm);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(218, 98, 125, 0.4);
  flex-shrink: 0;
  width: 120px;
  height: 44px;
  white-space: nowrap;
}

.casino-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(218, 98, 125, 0.6);
}

/* Footer Section - ~800px height */
.footer-section {
  background: 
    var(--overlay-dark),
    url('/public/images/bg.jpg') center/cover no-repeat;
  padding: 60px 0;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.info-block {
  min-height: 200px;
}

.info-block h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--accent-primary);
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin: 20px 0 10px 0;
}

.info-block p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 16px;
}

.info-block ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.info-block li {
  color: var(--text-secondary);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.info-block li::before {
  content: "•";
  color: var(--accent-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Legal Disclaimers - 150px */
.legal-disclaimers {
  border-top: 1px solid var(--card-border);
  padding-top: 40px;
  margin-top: 40px;
  min-height: 150px;
}

.legal-disclaimers.without-divider {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}



.legal-text {
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  text-align: center;
  margin-bottom: 20px;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.legal-links a {
  color: var(--accent-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: var(--neutral-light);
}

/* Copyright - 80px */
.copyright {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-primary);
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Age Verification Banner - Full Screen Overlay */
.age-verification-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  /* animation: slideUp 0.5s ease-out; */
}

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

/* Shake animation for age verification */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
  20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  backdrop-filter: blur(15px);
}

.banner-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.banner-text i {
  color: var(--secondary-orange);
  font-size: var(--text-4xl);
  margin-bottom: 8px;
}

.banner-text strong {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  margin-bottom: 8px;
}

.banner-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-verify {
  background: var(--gradient-warm);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(218, 98, 125, 0.4);
  min-width: 160px;
}

.btn-verify:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(218, 98, 125, 0.6);
}

.btn-info {
  color: var(--secondary-orange);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  padding: 16px 24px;
  border: 2px solid var(--secondary-orange);
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 160px;
  text-align: center;
}

.btn-info:hover {
  color: var(--primary-dark);
  background: var(--secondary-orange);
  border-color: var(--secondary-orange);
  transform: translateY(-2px);
}

.legal-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Page Load Animations */

/* Static animation delays for each casino card - Disabled */
/* .casino-list .casino-card:nth-child(1) { animation-delay: 0.1s; } */
/* .casino-list .casino-card:nth-child(2) { animation-delay: 0.2s; } */
/* .casino-list .casino-card:nth-child(3) { animation-delay: 0.3s; } */
/* .casino-list .casino-card:nth-child(4) { animation-delay: 0.4s; } */
/* .casino-list .casino-card:nth-child(5) { animation-delay: 0.5s; } */
/* .casino-list .casino-card:nth-child(6) { animation-delay: 0.6s; } */
/* .casino-list .casino-card:nth-child(7) { animation-delay: 0.7s; } */

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

/* Utility Classes */
.hidden {
  display: none !important;
}

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

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
} 