/* Warrior Queen Casino - Unique Styles */

/* CSS Variables */
:root {
  --gold-primary: #FFD700;
  --gold-light: #FFF59D;
  --gold-dark: #FFC107;
  --purple-primary: #7B1FA2;
  --purple-light: #BA68C8;
  --purple-dark: #4A148C;
  --black-primary: #0a0a0a;
  --black-secondary: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-light: #f0f0f0;
  --white: #ffffff;
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-purple: 0 0 20px rgba(123, 31, 162, 0.3);
}

/* Global Reset */
*, *::before, *::after {
  box-sizing: border-box !important;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--black-primary);
  color: var(--gray-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(123, 31, 162, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
}

/* Header */
.header {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gold-primary);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

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

.logo-icon {
  font-size: 2rem;
}

/* Navigation */
.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-primary);
}

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

/* Buttons */
.btn, .btn-nav, .btn-primary, .btn-secondary, .btn-play, .btn-small {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary, .btn-nav {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(123, 31, 162, 0.4);
}

.btn-primary:hover, .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 31, 162, 0.6);
}

.btn-secondary, .btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-primary);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-play {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-primary);
  width: 100%;
  margin-top: 1rem;
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}

/* Burger Menu */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (min-width: 900px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn span {
  width: 25px;
  height: 3px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--black-secondary) 0%, var(--purple-dark) 100%);
  z-index: 999;
  transition: right 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  width: 100%;
  padding: 2rem;
}

.mobile-menu a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-primary);
  transform: translateX(10px);
}

.mobile-register {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
  color: var(--black-primary) !important;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

/* Hero Section */
.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section {
  padding: 4rem 0;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-secondary) 100%);
  border: 1px solid var(--purple-dark);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold-primary), var(--purple-primary));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: transparent;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* Games */
.games {
  background: rgba(26, 26, 26, 0.5);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background: var(--black-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 1.5rem;
}

.game-info h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.game-rating {
  color: var(--purple-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-dark);
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--gray-light);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-light);
  opacity: 0.9;
}

/* Reviews */
.reviews {
  background: rgba(123, 31, 162, 0.05);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--black-secondary);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer {
  color: var(--gold-primary);
  font-weight: 600;
}

.review-stars {
  color: var(--gold-primary);
}

/* Leaderboard */
.leaderboard-grid {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.leader-item {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-secondary) 100%);
  border: 1px solid var(--purple-dark);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.leader-item:hover {
  border-color: var(--gold-primary);
  transform: translateX(10px);
}

.leader-rank {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  min-width: 50px;
}

.leader-name {
  flex: 1;
  color: var(--purple-light);
  font-weight: 600;
}

.leader-score {
  color: var(--gold-primary);
  font-weight: 700;
}

/* Disclaimer */
.disclaimer {
  background: var(--black-secondary);
  border-top: 2px solid var(--gold-primary);
  padding: 3rem 0;
}

.disclaimer-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

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

.compliance-logo {
  height: 50px;
  width: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.compliance-logo:hover {
  transform: scale(1.1);
  background: var(--white);
}

.support-info {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.support-info strong {
  color: var(--gold-primary);
}

/* Footer */
.footer {
  background: var(--black-primary);
  border-top: 1px solid var(--gray-dark);
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

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

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-compliance {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-compliance img {
  height: 40px;
  width: auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 8px;
}

.age-badge {
  background: var(--gold-primary);
  color: var(--black-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-text {
  color: var(--gray-light);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-secondary) 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.modal-content h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 400px;
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black-secondary) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .benefits-grid,
  .games-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-popup {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/* Prevent horizontal scroll */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
  }
  
  .container {
    padding: 0 0.75rem;
  }
}

/* About Page Styles */
.about-content {
  background: rgba(26, 26, 26, 0.5);
  padding: 4rem 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  color: var(--gold-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.values-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.values-list li::before {
  content: '⚔️';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.about-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(123, 31, 162, 0.1);
  border-radius: 15px;
  border: 1px solid var(--purple-dark);
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: var(--gray-dark);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.member-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.member-role {
  color: var(--purple-light);
  font-style: italic;
  margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
  background: rgba(123, 31, 162, 0.05);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--black-secondary);
  border: 1px solid var(--gold-primary);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  color: var(--purple-light);
  margin-top: 0.5rem;
}

/* Contact Page Styles */
.contact-content {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-form {
  background: var(--gray-dark);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--purple-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--black-secondary);
  border: 1px solid var(--purple-dark);
  border-radius: 8px;
  color: var(--gray-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact Info Cards */
.info-card {
  background: var(--gray-dark);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--gold-primary);
  transform: translateX(5px);
}

.info-card h3 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.info-card a {
  color: var(--purple-light);
  text-decoration: none;
}

.info-card a:hover {
  color: var(--gold-primary);
}

.response-time {
  font-size: 0.9rem;
  color: var(--purple-light);
  margin-top: 0.5rem;
}

.phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.faq-link {
  text-align: center;
  margin-top: 2rem;
}

/* Response Section */
.response-section {
  background: rgba(26, 26, 26, 0.5);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.response-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.response-card {
  background: var(--black-secondary);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 2rem;
  min-width: 150px;
  transition: all 0.3s ease;
}

.response-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.response-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-note {
  font-style: italic;
  color: var(--purple-light);
  margin-top: 2rem;
}

/* Responsible Play Styles */
.responsible-content {
  padding: 4rem 0;
}

.responsible-text {
  max-width: 800px;
  margin: 0 auto;
}

.warrior-rules, .warning-signs {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.warrior-rules li, .warning-signs li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid rgba(123, 31, 162, 0.2);
}

.warrior-rules li::before {
  content: '⚔️';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
}

.warning-signs li::before {
  content: '⚠️';
  position: absolute;
  left: 0;
  color: var(--purple-light);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.tool-card {
  background: var(--gray-dark);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.tool-card h4 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

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

.resource-card {
  background: var(--black-secondary);
  border: 1px solid var(--gold-primary);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.resource-card h4 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.resource-card a {
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 600;
}

.resource-card a:hover {
  color: var(--gold-primary);
}

.helpline-number {
  font-size: 1.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 0.5rem;
}

.responsible-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 15px;
  border: 1px solid var(--gold-primary);
}

/* Tips Section */
.tips-section {
  background: rgba(26, 26, 26, 0.5);
  padding: 4rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tip-card {
  background: var(--black-secondary);
  border: 1px solid var(--purple-dark);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: rotate(-2deg) translateY(-5px);
  border-color: var(--gold-primary);
}

.tip-card h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

/* Auth Pages (Login/Register) */
.hero-compact {
  padding: 5rem 0 2rem;
}

.auth-section {
  padding: 3rem 0;
}

.auth-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.auth-card {
  background: var(--gray-dark);
  border: 1px solid var(--purple-dark);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.auth-card h2 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.auth-form {
  margin-top: 2rem;
}

.auth-form small {
  color: var(--purple-light);
  font-size: 0.85rem;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.remember-me {
  display: flex;
  align-items: center;
  color: var(--gray-light);
  cursor: pointer;
}

.remember-me input {
  margin-right: 0.5rem;
}

.forgot-link {
  color: var(--purple-light);
  text-decoration: none;
}

.forgot-link:hover {
  color: var(--gold-primary);
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-light);
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 0.5rem;
}

.checkbox-label a {
  color: var(--purple-light);
  text-decoration: none;
  margin-left: 0.25rem;
}

.checkbox-label a:hover {
  color: var(--gold-primary);
}

.btn-full {
  width: 100%;
}

.auth-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.auth-divider span {
  background: var(--gray-dark);
  padding: 0 1rem;
  color: var(--purple-light);
  position: relative;
  z-index: 1;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--purple-dark);
  z-index: 0;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--purple-dark);
  border-radius: 30px;
  background: var(--black-secondary);
  color: var(--gray-light);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold-primary);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.google-btn:hover {
  background: rgba(66, 133, 244, 0.1);
}

.facebook-btn:hover {
  background: rgba(24, 119, 242, 0.1);
}

.auth-switch {
  text-align: center;
  margin-top: 2rem;
}

.auth-switch a {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-switch a:hover {
  text-decoration: underline;
}

.auth-benefits {
  background: rgba(123, 31, 162, 0.05);
  border: 1px solid var(--purple-dark);
  border-radius: 20px;
  padding: 2.5rem;
}

.auth-benefits h3 {
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}

.testimonial-card {
  background: var(--gray-dark);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--gold-primary);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-card span {
  color: var(--purple-light);
  font-size: 0.9rem;
}

.security-note {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--gold-primary);
  border-radius: 15px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.security-note h4 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

/* Privacy Policy Styles */
.legal-content {
  padding: 4rem 0;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text h3 {
  color: var(--gold-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-text ul li {
  margin-bottom: 0.5rem;
  color: var(--gray-light);
}

.last-updated {
  color: var(--purple-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(123, 31, 162, 0.1);
  border-radius: 15px;
  border: 1px solid var(--purple-dark);
  text-align: center;
}

/* Additional form styles */
input[type="date"] {
  cursor: pointer;
} 