/* frontend/public/style.css - Common CSS for all pages */
:root {
  --primary: #ff004c;         /* neon red */
  --secondary: #ffd700;       /* gold */
  --dark: #000000;
  --dark-bg: #0f001a;
  --purple: #6b21a8;
  --text: #ffffff;
  --gray: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top, #1a0033, #000);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,0,76,0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo span {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

.auth-buttons {
  display: flex;
  gap: 15px;
}

.auth-buttons a {
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-login {
  background: var(--primary);
  color: white;
}

.btn-register {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-login:hover { background: #d6003f; }
.btn-register:hover { background: var(--primary); color: white; }

/* Hero & Page Hero */
.hero,
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 140px; /* Header space */
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero h1,
.page-hero h1 {
  font-size: 4.5rem;
  color: var(--secondary);
  text-shadow: 0 0 20px rgba(255,215,0,0.5);
  margin-bottom: 20px;
}

.hero p,
.page-hero p {
  font-size: 1.3rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn,
.btn-primary,
.btn-cta {
  padding: 16px 40px;
  font-size: 1.2rem;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 8px 30px rgba(255,0,76,0.4);
  transition: all 0.3s;
}

.hero-btn:hover,
.btn-primary:hover,
.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,0,76,0.6);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 3rem;
  margin: 80px 0 40px;
  color: var(--primary);
}

/* Games Grid */
.games-grid,
.eeats-grid,
.features-grid,
.bonus-cards,
.stats-grid,
.mb-steps-container,
.mb-markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card,
.eeats-card,
.feature-card,
.bonus-card,
.stat-card,
.mb-step,
.mb-market {
  background: #141414;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #333;
  transition: all 0.3s;
}

.game-card:hover,
.eeats-card:hover,
.feature-card:hover,
.bonus-card:hover,
.stat-card:hover,
.mb-step:hover,
.mb-market:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,0,76,0.2);
}

.feature-icon,
.bonus-icon,
.eeats-icon,
.stat-number,
.mb-step-number {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary);
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37,211,102,0.5);
}

.whatsapp-float span {
  position: absolute;
  bottom: 90px;
  background: #25D366;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.whatsapp-float:hover span {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .hero p { font-size: 1.1rem; }
  .games-grid,
  .eeat-grid,
  .features-grid,
  .bonus-cards,
  .stats-grid,
  .mb-steps-container,
  .mb-markets-grid {
    grid-template-columns: 1fr;
  }
  nav ul { flex-direction: column; gap: 15px; }
  .auth-buttons { flex-direction: column; gap: 10px; }
  .page-hero { padding-top: 120px; }
}.faq-question {
  background: rgba(20,20,30,0.8) !important;
  border: 1px solid #FFD700 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(255,215,0,0.15) !important;
  color: #FFD700 !important;
  padding: 18px 24px !important;
  transition: all 0.3s ease;
}
.faq-question:hover {
  box-shadow: 0 8px 25px rgba(255,215,0,0.25) !important;
  transform: translateY(-2px);
}
.faq-answer {
  background: rgba(15,15,25,0.9) !important;
  border-left: 4px solid #FFD700 !important;
  padding: 20px 24px !important;
  border-radius: 0 0 12px 12px !important;
}.whatsapp-float {
  background: linear-gradient(135deg, #25D366, #1DA851) !important;
  border: 2px solid #FFD700 !important;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5), 0 0 15px rgba(255,215,0,0.3) !important;
}
.whatsapp-float span {
  background: #1DA851 !important;
  border: 1px solid #FFD700 !important;
}.faq-question i.fa-chevron-down {
  color: #FACC15 !important;
  transition: transform 0.3s ease;
}
.faq-item input:checked + label i.fa-chevron-down {
  transform: rotate(180deg);
}
body {
  font-family: 'Roboto', sans-serif !important;
}
h1, h2, .group-title, .faq-question {
  font-family: 'Playfair Display', serif !important;
}