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

/* CSS Custom Properties - Visual Design System */
:root {
  /* Primary Colors - Nova Paleta Atualizada */
  --primary-bg-start: #000000;   /* Preto fornecido */
  --primary-bg-end: #494949;     /* Cinza escuro fornecido */
  --primary-coral: #ff5d73;      /* Rosa coral fornecido */
  --primary-dark: #000000;       /* Preto como cor principal escura */
  
  /* Secondary Colors - Baseados na paleta fornecida */
  --secondary-dark-gray: #494949;    /* Cinza escuro fornecido */
  --secondary-medium-gray: #7c7a7a;  /* Cinza médio fornecido */
  --secondary-light-gray: #b8b6b6;   /* Cinza claro derivado */
  --secondary-very-light: #e8e8e8;   /* Cinza bem claro derivado */
  
  /* Accent Colors - Cores complementares harmonizadas */
  --accent-coral: #ff5d73;        /* Rosa coral principal fornecido */
  --accent-coral-hover: #e54965;  /* Rosa coral mais escuro para hover */
  --accent-blue: #4a90e2;         /* Azul complementar */
  --accent-green: #27ae60;        /* Verde complementar */
  --accent-yellow: #f1c40f;       /* Amarelo complementar */
  --accent-purple: #8e44ad;       /* Roxo complementar */
  
  /* Card & Interface Colors */
  --card-bg: rgba(73, 73, 73, 0.2);       /* Baseado no cinza escuro */
  --card-border: rgba(124, 122, 122, 0.3); /* Baseado no cinza médio */
  --overlay-dark: rgba(0, 0, 0, 0.85);     /* Baseado no preto */
  
  /* Text Colors */
  --text-primary: #ffffff;         /* Branco fornecido */
  --text-secondary: #e8e8e8;       /* Cinza bem claro para textos secundários */
  --text-muted: #7c7a7a;           /* Cinza médio fornecido */
  --text-accent: #ff5d73;          /* Rosa coral para acentos */
  
  /* Badge Colors - Usando paleta complementar */
  --badge-hot: #ff5d73;            /* Rosa coral para "hot" */
  --badge-exclusive: #8e44ad;      /* Roxo para "exclusive" */
  --badge-fast: #27ae60;           /* Verde para "fast" */
  
  /* Status Colors */
  --success: #27ae60;    /* Verde */
  --warning: #f1c40f;    /* Amarelo */
  --error: #ff5d73;      /* Rosa coral */
  --info: #4a90e2;       /* Azul */

  /* 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: linear-gradient(135deg, var(--primary-bg-start) 0%, var(--primary-bg-end) 100%);
  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(--accent-yellow);
  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-coral);
  display: block;
  /* animation: pulse-glow 2s ease-in-out infinite; */
  text-shadow: 0 0 8px var(--accent-coral);
}

.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-coral);
  }
  50% { 
    text-shadow: 0 0 16px var(--accent-coral), 0 0 24px var(--accent-coral);
  }
} */

/* 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(--accent-gold);
  font-weight: var(--font-weight-medium);
}

/* CTA Button */
.casino-cta {
  background: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-coral-hover) 100%);
  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(255, 93, 115, 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(255, 93, 115, 0.6);
}

/* Footer Section - ~800px height */
.footer-section {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    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-coral);
  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-coral);
  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-coral);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

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

/* 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(--accent-yellow);
  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: linear-gradient(135deg, var(--primary-coral) 0%, var(--accent-coral-hover) 100%);
  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(255, 93, 115, 0.4);
  min-width: 160px;
}

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

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

.btn-info:hover {
  color: var(--primary-dark);
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  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;
} 