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

/* --- DIVINE ZEUS LUMINOUS GOLD SYSTEM RESET --- */
:root {
  --bg-primary: #d6e8fc; /* Azul celeste diurno vibrante e luminoso do Olimpo */
  --bg-secondary: #ffffff; /* Mármore branco puro */
  --bg-glass: rgba(255, 255, 255, 0.75); /* Vidro de Mármore Branco Translúcido */
  --bg-glass-hover: rgba(255, 255, 255, 0.88);
  --border-glass: rgba(212, 175, 55, 0.22); /* Delicada linha de ouro */
  --border-glass-active: rgba(212, 175, 55, 0.65); /* Ouro Olimpo brilhante */
  
  /* Gradientes de Ouro Real e Escovado */
  --accent-gold-light: #ffeaa7;
  --accent-gold: #d4af37;
  --accent-gold-dark: #a07e15;
  --accent-gold-glow: rgba(212, 175, 55, 0.25);
  
  --gradient-gold: linear-gradient(135deg, #ffeaa7 0%, #d4af37 50%, #a07e15 100%);
  --gradient-gold-metallic: linear-gradient(90deg, #a07e15 0%, #ffeaa7 25%, #d4af37 50%, #ffeaa7 75%, #a07e15 100%);
  
  /* Raios Celestiais de Zeus (Ciano do Céu) */
  --accent-lightning: #0284c7;
  --accent-lightning-glow: rgba(2, 132, 199, 0.2);
  
  /* Textos de Alto Contraste para Fundo Claro */
  --text-primary: #0a1428; /* Azul-carvão escuro de alta legibilidade */
  --text-secondary: #223250;
  --text-muted: #64758b; /* Cinza-azul bronzeado suave */
  
  --sidebar-width: 290px;
  --glass-blur: 24px;
  --border-radius-lg: 20px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  
  /* Fundo Celestial Límpido com Nuvens Celestiais e auras solares brilhantes do Olimpo */
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.75) 0%, transparent 45%), /* Sol nascente */
    radial-gradient(circle at 85% 25%, rgba(56, 189, 248, 0.3) 0%, transparent 40%),  /* Éter azul celeste */
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 80%), /* Bruma sagrada */
    linear-gradient(135deg, #cbe3ff 0%, #f4f9ff 60%, #ffffff 100%);
  background-attachment: fixed;
}

/* Gaiola Celestial Dourada em Fundo (Lattice de Ouro sobre o Céu Azul Límpido) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.035) 0px, rgba(212, 175, 55, 0.035) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(-45deg, rgba(212, 175, 55, 0.035) 0px, rgba(212, 175, 55, 0.035) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
  z-index: -1;
}

body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* Custom Scrollbar Dourada Metálica */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  border: 2px solid var(--bg-primary);
  transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* --- AGE VERIFICATION MODAL (TEMPLO CELESTIAL CLARO) --- */
.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 220, 240, 0.85); /* Véu azul de éter */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.age-modal-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.age-modal-box {
  background: rgba(255, 255, 255, 0.82); /* Mármore branco translúcido */
  border: 1.5px solid var(--accent-gold);
  box-shadow: 
    0 30px 70px rgba(10, 20, 40, 0.12), 
    0 0 50px rgba(212, 175, 55, 0.25),
    inset 0 0 30px rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-lg);
  padding: 50px 40px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  position: relative;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  animation: modalScaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Linha dourada superior no modal */
.age-modal-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--gradient-gold-metallic);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.age-modal-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.age-modal-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 35px;
  font-weight: 500;
}

.age-modal-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-modal {
  flex: 1;
  padding: 15px 22px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-bounce);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-enter {
  background: var(--gradient-gold);
  color: #ffffff;
  border: 1px solid #ffd700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-enter:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(212, 175, 55, 0.45), 
    0 0 10px rgba(2, 132, 199, 0.15);
  background: linear-gradient(135deg, #ffd700 0%, #a07e15 100%);
}

.btn-exit {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.btn-exit:hover {
  border-color: var(--accent-gold-dark);
  color: var(--accent-gold-dark);
  background-color: rgba(212, 175, 55, 0.05);
}

.age-modal-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: justify;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 20px;
}

.age-modal-disclaimer a {
  color: var(--accent-gold-dark);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.age-modal-disclaimer a:hover {
  color: var(--text-primary);
}

/* --- MAIN INTERFACE LAYOUT --- */
.app-container {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* --- SIDEBAR (A GAIOLA DE MÁRMORE E OURO) --- */
.sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-right: 3px solid var(--accent-gold);
  box-shadow: 5px 0 25px rgba(212, 175, 55, 0.08);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

/* Efeito sutil de barras de ouro na coluna de mármore */
.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px) 0 0 / 20% 100%,
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 246, 255, 0.8) 100%);
  pointer-events: none;
  opacity: 0.9;
}

/* Cartão de Perfil (Placa de Mármore Branco) */
.profile-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.04);
  transition: var(--transition-smooth);
}

.profile-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.12),
    inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold-metallic);
}

.avatar-container {
  position: relative;
  width: 82px;
  height: 82px;
  margin-bottom: 14px;
}

.profile-avatar-fallback {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 0 15px var(--accent-gold-glow);
  border: 3px solid #ffffff;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 20px var(--accent-gold-glow);
  animation: solarBreathe 4s ease-in-out infinite;
}

@keyframes solarBreathe {
  0% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 0 2px rgba(2, 132, 199, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.55), 0 0 10px rgba(2, 132, 199, 0.25);
    transform: scale(1.03);
    border-color: #ffd700;
  }
  100% {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 0 2px rgba(2, 132, 199, 0.1);
    transform: scale(1);
  }
}

.status-indicator {
  position: absolute;
  bottom: 0;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 3px;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: var(--accent-gold);
  box-shadow: 0 0 10px var(--accent-gold);
  animation: pulseGold 2s infinite;
}

.status-dot.busy {
  background-color: #0284c7;
  box-shadow: 0 0 10px #0284c7;
}

.status-dot.offline {
  background-color: var(--text-muted);
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.profile-name {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
  filter: drop-shadow(0 0.5px 0.5px rgba(255, 255, 255, 0.8));
}

.profile-subtext {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Sidebar Navigation (Brazões Escuros e Dourados) */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.nav-link svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-gold-dark);
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.12);
}

.nav-link:hover svg {
  color: var(--accent-gold);
  transform: translateX(2px);
}

.nav-link.active {
  color: var(--accent-gold-dark);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.6) 100%);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: inset 3px 0 0 var(--accent-gold);
  font-weight: 700;
}

.nav-link.active svg {
  color: var(--accent-gold-dark);
}

/* Secção de Redes Sociais */
.socials-section {
  margin-top: auto;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 25px;
  position: relative;
  z-index: 5;
}

.socials-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.socials-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-sm);
  background: rgba(0, 0, 0, 0.02);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.social-icon-svg {
  width: 15px;
  height: 15px;
}

.social-link:hover {
  color: var(--accent-gold-dark);
  background: rgba(212, 175, 55, 0.03);
}

.social-link:hover .social-icon {
  background: var(--gradient-gold);
  color: #ffffff;
  box-shadow: 0 0 10px var(--accent-gold-glow);
  border-color: #ffd700;
  transform: scale(1.08);
}

/* Sidebar Footer */
.sidebar-footer {
  margin-top: 20px;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 15px;
  position: relative;
  z-index: 5;
}

/* --- MAIN CONTENT WINDOW --- */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  padding: 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-section {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  flex: 1;
  flex-direction: column;
}

.content-section.active {
  display: flex;
  opacity: 1;
}

.section-header {
  margin-bottom: 35px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.5));
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-gold-glow);
}

/* --- NO OFFERS FALLBACK STATE --- */
.no-offers-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-height: 350px;
}

.coming-soon-card {
  background: var(--bg-glass);
  border: 1.5px solid var(--border-glass-active);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  max-width: 620px;
  text-align: center;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 15px 35px rgba(10, 20, 40, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--accent-gold);
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
}

.coming-soon-icon-wrapper {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent-gold-dark);
  animation: pulseGoldCircle 3s infinite;
}

@keyframes pulseGoldCircle {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.coming-soon-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.coming-soon-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.pulse-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--accent-gold-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pulse-info-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* --- DYNAMIC OFFERS GRID --- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(390px, 410px));
  justify-content: center;
  gap: 25px;
  flex: 1;
}

/* --- CASINO CARD (O TEMPLO DE MÁRMORE E OURO) --- */
.offer-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  transition: var(--transition-bounce);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 20, 40, 0.08), inset 0 0 15px rgba(255, 255, 255, 0.7);
  
  /* Impede que o cartão estique verticalmente até ao final da página */
  height: fit-content;
  align-self: start;
}

.offer-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-glass-active);
  box-shadow: 
    0 20px 45px rgba(10, 20, 40, 0.15), 
    0 0 25px rgba(212, 175, 55, 0.25);
}

/* Relâmpago ciano de Zeus diagonal no hover */
.offer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 132, 199, 0.06),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}

.offer-card:hover::after {
  left: 200%;
  transition: all 0.9s ease-in-out;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--gradient-gold);
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 0 10px var(--accent-gold-glow);
  border: 1px solid #ffd700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.info-button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-left: auto;
}

.info-button:hover {
  color: var(--accent-gold-dark);
  background: rgba(212, 175, 55, 0.05);
}

/* Casino Logo area (Ajustado para logos de tamanho maior com fundo dourado premium metálico) */
.card-logo-container {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255, 234, 167, 0.45) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(160, 126, 21, 0.35) 100%);
  border: 2.5px solid rgba(212, 175, 55, 0.65);
  border-radius: var(--border-radius-md);
  padding: 12px;
  box-shadow: 
    inset 0 0 20px rgba(212, 175, 55, 0.2),
    0 4px 15px rgba(212, 175, 55, 0.1);
  transition: var(--transition-smooth);
}

.offer-card:hover .card-logo-container {
  border-color: rgba(212, 175, 55, 0.95);
  box-shadow: 
    inset 0 0 25px rgba(212, 175, 55, 0.35),
    0 8px 25px rgba(212, 175, 55, 0.2);
}

.card-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.card-logo-link:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

.card-logo-text {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--text-primary) 0%, var(--accent-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.card-logo-img {
  height: 100%;
  max-height: 100%;
  max-width: 90%;
  width: auto;
  object-fit: contain;
}


/* Bonuses containers */
.card-bonuses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.bonus-box {
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--border-radius-md);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bonus-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-gold-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bonus-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Promo Code Box */
.code-box {
  background: rgba(212, 175, 55, 0.03);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--border-radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 18px;
  transition: var(--transition-smooth);
}

.code-box:hover {
  background: rgba(212, 175, 55, 0.06);
  transform: translateY(-1px);
}

.code-box.copied {
  border-color: var(--accent-lightning);
  background: rgba(2, 132, 199, 0.02);
}

.code-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-gold-dark);
}

.code-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.copy-icon {
  width: 16px;
  height: 16px;
  color: var(--accent-gold-dark);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.code-box:hover .copy-icon {
  opacity: 1;
  transform: scale(1.1);
  color: var(--text-primary);
}

/* Payment Methods display */
.payment-methods {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-badge,
.payment-badge-img-wrapper {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.18);
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.payment-badge {
  width: 32px;
}

.payment-badge-img-wrapper {
  width: 54px;
  padding: 4px 6px;
}

.payment-badge:hover,
.payment-badge-img-wrapper:hover {
  background: #ffffff;
  color: var(--accent-gold-dark);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.18);
}

.payment-badge-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.payment-svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold-dark);
}

.payment-text-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}

/* Card CTA Button (OURO CELESTIAL METÁLICO) */
.card-disclaimer {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}

.claim-button {
  width: 100%;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  color: #ffffff; /* Texto branco de altíssimo contraste */
  background: linear-gradient(135deg, #f5cf66 0%, #d4af37 50%, #aa8420 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  border: 1px solid #d4af37;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.claim-button:hover {
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 50%, #856820 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.45),
    0 0 10px rgba(2, 132, 199, 0.2);
}

/* Shimmer de ouro metálico polido */
.claim-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-25deg);
  transition: none;
  animation: goldShimmer 4s infinite linear;
}

@keyframes goldShimmer {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}

/* Custom styles for disabled buttons and logos with no links */
.claim-button.disabled {
  background: #cbd5e1;
  border-color: #cbd5e1;
  color: #64758b;
  cursor: not-allowed;
  box-shadow: none;
  text-shadow: none;
  pointer-events: none;
}

.claim-button.disabled::before {
  display: none;
}

.card-logo-link.no-link {
  cursor: default;
}

/* Card Details Drawer overlay (Mármore Translúcido Claro) */
.card-info-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 10;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-glass-active);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.card-info-drawer.active {
  transform: translateY(0);
}

.drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.drawer-content h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.drawer-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.drawer-content li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 14px;
  line-height: 1.4;
}

.drawer-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-gold);
}

.close-drawer-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: transparent;
  color: var(--accent-gold-dark);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

/* --- STORE SECTION (MÁRMORE E OURO) --- */
.store-coming-soon {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-active);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.7);
  
  width: fit-content;
  max-width: 650px;
  margin: 0 auto;
  align-self: center;
}

.store-coming-soon h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--accent-gold-dark);
  font-weight: 800;
}

.store-coming-soon p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  opacity: 0.6;
  pointer-events: none;
}

.store-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.store-item-image {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.store-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.store-item-cost {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-gold-dark);
  margin-bottom: 15px;
}

.store-buy-btn {
  width: 100%;
  padding: 8px;
  border: none;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-muted);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .sidebar {
    width: 240px;
  }
  .main-content {
    margin-left: 240px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .app-container {
    flex-direction: column;
  }
  
  .sidebar {
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 3px solid var(--accent-gold);
    padding: 20px;
    min-height: auto;
  }
  
  .sidebar::before {
    display: none;
  }
  
  .profile-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-bottom: 15px;
    padding: 15px;
    width: 100%;
    justify-content: space-between;
  }
  
  .avatar-container {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  
  .profile-avatar-fallback {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  
  .profile-avatar-img {
    width: 48px;
    height: 48px;
  }
  
  .profile-card-details {
    flex: 1;
    margin-left: 15px;
  }
  
  .sidebar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
  }
  
  .nav-link {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .socials-section {
    display: none;
  }
  
  .main-content {
    margin-left: 0;
    padding: 24px;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .age-modal-box {
    padding: 35px 20px;
  }
  
  .age-modal-title {
    font-size: 1.8rem;
  }
  
  .age-modal-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-modal {
    width: 100%;
  }
  
  .profile-card {
    flex-wrap: wrap;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
}

