/* CSS Variables */
:root {
  --primary-bg: #010205;
  --secondary-bg: #211931;
  --tertiary-bg: #0f172a;
  --quaternary-bg: #1e293b;
  --accent-purple: #e9bdff;
  --accent-purple-dark: #a855f7;
  --accent-purple-mid: #c084fc;
  --text-light: #ffffff;
  --text-muted: #a1a1aa;
  --border-light: rgba(233, 189, 255, 0.2);
  --shadow-glow: 0 0 20px rgba(168, 85, 247, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --gradient-primary: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #e9bdff 100%);
  --gradient-bg: linear-gradient(135deg, #010205 0%, #211931 50%, #1e293b 100%);
  --gradient-card: linear-gradient(145deg, rgba(33, 25, 49, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PT Sans", sans-serif;
  background: var(--primary-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Arvo", serif;
  font-weight: 700;
}
.text-muted {
  color: #cdcdcd !important;
}
/* Background Effects */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(233, 189, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

/* Header Styles */
.navbar {
  background: rgba(1, 2, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.navbar-brand {
  font-family: "Arvo", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-purple) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Button Styles */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
}

.btn-outline-primary {
  border: 2px solid var(--accent-purple);
  color: var(--accent-purple);
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: 
    linear-gradient(rgba(1, 2, 5, 0.7), rgba(33, 25, 49, 0.8)),
    url('./img/hero-background.webp') center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(192, 132, 252, 0.15) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* Card Styles */
.custom-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.custom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.6;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
  border-color: var(--accent-purple);
}

/* Platform Cards */
.platform-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--accent-purple);
}

.platform-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.platform-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
  gap: 0.5rem;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
}

.rating-score {
  background: var(--gradient-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-weight: 700;
  margin-left: 0.5rem;
}

.platform-features {
  list-style: none;
  margin: 1.5rem 0;
}

.platform-features li {
  background: rgba(233, 189, 255, 0.1);
  color: var(--accent-purple);
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  border-radius: 15px;
  font-size: 0.9rem;
  border: 1px solid rgba(233, 189, 255, 0.2);
}

.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.payment-badge {
  background: var(--accent-purple-dark);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Section Styles */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Styles */
.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 5px 20px rgba(168, 85, 247, 0.1);
}

.faq-question {
  background: transparent;
  border: none;
  color: var(--text-light);
  font-weight: 600;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-purple);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  display: none;
}

/* Form Styles */
.form-control {
  background: rgba(33, 25, 49, 0.8);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-light);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(33, 25, 49, 0.9);
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 0.2rem rgba(168, 85, 247, 0.25);
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer {
  background: var(--primary-bg);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent-purple);
}

/* Responsible Gaming Section */
.responsible-gaming {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  text-align: center;
}

.age-badge {
  background: var(--gradient-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1rem auto;
}

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

.partner-logo {
  width: 80px;
  height: 60px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.popup {
  background: var(--gradient-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.popup h3 {
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-card);
  border-top: 1px solid var(--border-light);
  padding: 1.5rem;
  z-index: 9998;
  backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    margin-top: 100px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .custom-card {
    padding: 1.5rem;
  }
  
  .platform-card {
    padding: 1.5rem;
  }
  
  .popup-buttons {
    flex-direction: column;
  }
  
  .partner-logos {
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

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

.scale-hover {
  transition: transform 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
}
