/* ==========================================
   casadosslots.com - Styles
   ========================================== */

:root {
  --bg: #0b0b13;
  --bg-gradient: linear-gradient(135deg, #1a0b2e 0%, #16213e 50%, #0f0f23 100%);
  --primary: #ff3366;
  --accent: #6a2bff;
  --secondary: #ff00ff;
  --text: #ffffff;
  --text-muted: #b8b8d1;
  --card-bg: rgba(0, 0, 0, 0.6);
  --card-border: rgba(255, 51, 102, 0.3);
  --neon-glow: 0 0 10px rgba(255, 51, 102, 0.5), 0 0 20px rgba(106, 43, 255, 0.3);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ==========================================
   Hero Section
   ========================================== */

/* IMPORTANTE: Troque "img/slots-bg.jpg" pela sua imagem de slot */
.hero {
  background-image: url("/home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 8rem 2rem;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(106, 43, 255, 0.4) 0%, 
    rgba(255, 51, 102, 0.3) 50%, 
    rgba(11, 11, 19, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 51, 102, 0.8), 0 0 40px rgba(106, 43, 255, 0.6);
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* ==========================================
   Buttons
   ========================================== */

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--primary);
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-secondary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(106, 43, 255, 0.4);
}

.btn-secondary:hover {
  background: transparent;
}

/* ==========================================
   Main Container
   ========================================== */

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 51, 102, 0.5);
}

/* ==========================================
   Product Grid / Cards
   ========================================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow), 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--primary);
}

.product-logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
}

.product-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s;
}

.product-card:hover .product-logo img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
  width: 100%;
}

.product-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 120px;
  text-align: center;
}

/* ==========================================
   Content Pages
   ========================================== */

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

.content h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(255, 51, 102, 0.4);
}

.content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--accent);
}

.content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-muted);
}

.content li {
  margin-bottom: 0.8rem;
}

/* ==========================================
   Platform Details Section
   ========================================== */

.details-section {
  margin: 4rem 0;
}

.platform-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.detail-block {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.detail-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(106, 43, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.5);
  border-color: var(--accent);
}

.detail-block h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(106, 43, 255, 0.3);
}

.detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-block li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.detail-block li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.8rem;
}

.detail-block li:last-child {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 51, 102, 0.2);
  font-weight: 500;
  color: var(--text);
}

/* ==========================================
   Warning / Disclaimer
   ========================================== */

.warning {
  background: rgba(255, 51, 102, 0.1);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 3rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================
   Footer
   ========================================== */

footer {
  background: rgba(0, 0, 0, 0.9);
  border-top: 2px solid var(--primary);
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Age Warning Section */
.age-warning-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

/* Age Warning Badge */
.age-warning {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: 3px solid var(--primary);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 51, 102, 0.6), 0 0 50px rgba(106, 43, 255, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.6), 0 0 50px rgba(106, 43, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 51, 102, 0.8), 0 0 60px rgba(106, 43, 255, 0.6);
  }
}

.age-badge {
  display: inline-block;
  background: var(--text);
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: bold;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.age-warning p {
  color: var(--text);
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

/* Regulatory Text */
.regulatory-text {
  background: rgba(255, 51, 102, 0.1);
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
}

.regulatory-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.regulatory-text strong {
  color: var(--primary);
  font-weight: bold;
}

.regulatory-text .terms-note {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.8;
  margin-top: 0.8rem;
}

/* Responsible Gaming Organizations */
.footer-orgs {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.footer-orgs h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(106, 43, 255, 0.3);
}

.org-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.org-logos a {
  display: block;
  padding: 0.8rem;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.org-logos a:hover {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 51, 102, 0.5);
}

.org-logos img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s;
}

.org-logos a:hover img {
  transform: scale(1.05);
}

/* Footer Links */
.footer-links {
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.footer-links p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.footer-copyright .disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 2rem 1rem;
  }

  /* Footer Mobile */
  .age-warning-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .age-badge {
    font-size: 1.8rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }

  .age-warning p {
    font-size: 0.85rem;
  }

  .regulatory-text {
    padding: 1rem;
  }

  .regulatory-text p {
    font-size: 0.85rem;
  }

  .org-logos {
    gap: 1rem;
  }

  .org-logos img {
    height: 40px;
    max-width: 100px;
  }

  footer {
    padding: 2rem 1rem;
  }
}

