

:root {
  /* Colors */
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  --danger-gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  --success-gradient: linear-gradient(135deg, #16a34a 0%, #15803d 100%);

  --primary-color: #667eea;
  --secondary-color: #ffd700;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #6b7280;

  --bg-primary: rgba(10, 8, 8, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.1);
  --bg-overlay: rgba(30, 58, 138, 0.95);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease-out;
}

/* Dark theme variables */
[data-theme="dark"] {
  --primary-gradient: linear-gradient(135deg, #4c51bf 0%, #553c9a 100%);
  --secondary-gradient: linear-gradient(135deg, #d69e2e 0%, #b7791f 100%);

  --text-primary: #f7fafc;
  --text-secondary: #e2e8f0;
  --text-muted: #a0aec0;

  --bg-primary: rgba(26, 32, 44, 0.95);
  --bg-glass: rgba(45, 55, 72, 0.3);
  --bg-overlay: rgba(26, 32, 44, 0.95);

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Theme transition - optimized for performance */
* {
  transition: background-color var(--transition-normal),
              color var(--transition-normal),
              border-color var(--transition-normal);
}

/* Performance optimizations */
.hero,
.feature-card,
.btn,
.nav-link,
.theme-toggle {
  will-change: transform;
}

.hero::before,
.btn::before,
.nav-link::before {
  will-change: transform, opacity;
}

/* GPU acceleration for animations */
.feature-card:hover,
.btn:hover,
.number:hover {
  transform: translateZ(0);
}

/*
===============================================
2. RESET AND BASE STYLES
===============================================
*/

/* Responsible Gaming Banner */
.responsible-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.banner-icon {
  font-size: 1.2rem;
}

.banner-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.banner-link:hover {
  opacity: 0.8;
}

/* Navigation Actions */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-actions .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.nav-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions .btn-primary {
  background: var(--secondary-gradient);
  border: none;
  color: var(--text-primary);
  font-weight: 600;
}

.nav-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Hide mobile nav actions on desktop */
.nav-actions-mobile {
  display: none;
}

/* Footer Badges */
.footer-badges {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.badge {
  background: var(--primary-gradient);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Age Gate Modal Styles */
.age-gate-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.age-gate-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.age-gate-header {
  text-align: center;
  margin-bottom: 2rem;
}

.age-gate-header h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.birth-date-inputs {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.input-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.age-error {
  background: #fee;
  color: #c53030;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  text-align: center;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.age-gate-buttons .btn {
  flex: 1;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-gate-footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 350px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup-content {
  padding: 1.5rem;
}

.cookie-popup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.cookie-icon {
  font-size: 1.2rem;
}

.cookie-title {
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.cookie-popup-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.cookie-learn-more {
  font-size: 0.8rem;
  color: var(--primary-color);
  text-decoration: none;
  display: block;
  text-align: center;
}

.cookie-learn-more:hover {
  text-decoration: underline;
}

/* Mobile responsiveness for cookie popup */
@media (max-width: 768px) {
  .cookie-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .cookie-popup-buttons {
    flex-direction: column;
  }

  .cookie-popup-buttons .btn {
    width: 100%;
  }
}

/* Next Draw Timer Section */
.next-draw-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.draw-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.draw-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.draw-info {
  margin-bottom: 3rem;
}

.jackpot-amount {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.jackpot-amount .currency {
  font-size: 2.5rem;
  vertical-align: top;
}

.jackpot-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 100px;
  backdrop-filter: blur(10px);
}

.timer-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.timer-label {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.draw-details {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.draw-details p {
  margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.win-amount {
  background: var(--success-gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-disclaimer {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  text-align: center;
}

.testimonial-disclaimer p {
  margin: 0;
  color: #856404;
  font-size: 0.95rem;
}

/* FAQ Notice */
.faq-notice {
  background: #fee;
  border: 2px solid #dc2626;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.faq-notice h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.faq-notice p {
  color: #7f1d1d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.faq-notice a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .timer-unit {
    min-width: auto;
    padding: 1rem;
  }

  .timer-number {
    font-size: 2rem;
  }

  .jackpot-amount {
    font-size: 2.5rem;
  }

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

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Responsible Gaming Styles */
.key-message-section {
  background: #fee;
  border-top: 4px solid #dc2626;
  border-bottom: 4px solid #dc2626;
  padding: 3rem 0;
}

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

.key-message h2 {
  color: #dc2626;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.message-text {
  font-size: 1.2rem;
  color: #7f1d1d;
  line-height: 1.6;
}

.recommendations-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

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

.recommendation-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.recommendation-card:hover {
  transform: translateY(-5px);
}

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

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

.recommendation-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.self-exclusion-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.exclusion-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

.exclusion-info h3:first-child {
  margin-top: 0;
}

.exclusion-info ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.exclusion-info li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.action-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: fit-content;
}

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

.action-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.action-card .btn {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  text-decoration: none;
  text-align: center;
}

.action-card .btn:last-child {
  margin-bottom: 0;
}

/* Mobile responsiveness for responsible gaming */
@media (max-width: 768px) {
  .recommendations-grid {
    grid-template-columns: 1fr;
  }

  .exclusion-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .key-message h2 {
    font-size: 1.5rem;
  }

  .message-text {
    font-size: 1.1rem;
  }
}

/* Cookie Table Styles */
.cookie-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9rem;
}

.cookie-table th {
  background: var(--primary-gradient);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #ddd;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: top;
}

.cookie-table tbody tr:hover {
  background: #f8f9fa;
}

.cookie-table code {
  background: #f1f3f4;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: #d63384;
}

.cookie-table td:nth-child(2) {
  font-weight: 600;
}

.cookie-table td:nth-child(5) {
  text-align: center;
  font-weight: 600;
}

/* Mobile responsiveness for cookie table */
@media (max-width: 768px) {
  .cookie-table {
    font-size: 0.8rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.5rem;
  }

  .cookie-table th:nth-child(3),
  .cookie-table td:nth-child(3) {
    min-width: 200px;
  }
}

/* Terms & Conditions Mandatory Statements */
.mandatory-statements {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.statement-box {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statement-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.statement-box h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.statement-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1.05rem;
}

.statement-box:nth-child(1) {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.statement-box:nth-child(2) {
  border-color: #dc2626;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.statement-box:nth-child(3) {
  border-color: #059669;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.statement-box:nth-child(4) {
  border-color: #7c3aed;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.statement-box:nth-child(5) {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

/* Mobile responsiveness for statements */
@media (max-width: 768px) {
  .statement-box {
    padding: 1rem;
  }

  .statement-box h3 {
    font-size: 1.1rem;
  }

  .statement-box p {
    font-size: 1rem;
  }
}

/* Auth Section Styles (Sign Up / Login) */
.auth-section {
  padding: 80px 0;
  background: var(--primary-gradient);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.auth-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.auth-header h1 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.auth-tabs {
  display: flex;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.tab-button {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-button.active {
  color: var(--primary-color);
  background: white;
  border-bottom-color: var(--primary-color);
}

.tab-button:hover:not(.active) {
  background: #e9ecef;
}

.auth-tab {
  display: none;
  padding: 2rem;
}

.auth-tab.active {
  display: block;
}

.auth-form h2 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.checkbox-group {
  margin-bottom: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid #dee2e6;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: white;
  transition: all 0.3s ease;
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.btn-full {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.auth-switch {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.link-button {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}

.link-button:hover {
  opacity: 0.8;
}

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

.forgot-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-link:hover {
  text-decoration: underline;
}

.security-notice {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.notice-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notice-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.notice-content p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.notice-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.notice-content a:hover {
  text-decoration: underline;
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.success-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.success-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Mobile responsiveness for auth */
@media (max-width: 768px) {
  .auth-container {
    margin: 1rem;
    max-width: none;
  }

  .auth-header,
  .auth-tab {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-options {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .security-notice {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

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

.contact-info h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
}

.method-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.method-details h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.method-details p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.response-time {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-form-container h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.regulatory-contacts {
  padding: 80px 0;
  background: #f8f9fa;
}

.regulatory-contacts h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
}

.regulatory-contacts > p {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

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

.regulatory-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.regulatory-card:hover {
  transform: translateY(-3px);
}

.regulatory-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.regulatory-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.regulatory-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.regulatory-card a:hover {
  text-decoration: underline;
}

.emergency-support {
  padding: 60px 0;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  text-align: center;
}

.emergency-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.emergency-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.emergency-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.emergency-support .btn {
  background: white;
  color: var(--text-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.emergency-support .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Mobile responsiveness for contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .method-icon {
    align-self: center;
  }

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

  .emergency-contacts {
    flex-direction: column;
    align-items: center;
  }

  .emergency-item {
    width: 100%;
    max-width: 300px;
  }
}

/* About Page Styles */
.about-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.about-intro h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.about-intro .lead {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

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

.about-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.about-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.stats-section {
  padding: 100px 0;
  background: var(--primary-gradient);
  color: white;
  text-align: center;
}

.stats-section h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.mission-section {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.mission-content h2 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.mission-text {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.value-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-notice {
  padding: 60px 0;
  background: #fff3cd;
  border-top: 4px solid #ffc107;
  border-bottom: 4px solid #ffc107;
}

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

.notice-content h3 {
  color: #856404;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.notice-content p {
  color: #856404;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.notice-content a {
  color: #856404;
  font-weight: 600;
  text-decoration: underline;
}

/* Security Page Styles */
.security-overview {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.security-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.security-intro h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.security-intro .lead {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.security-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.security-card:hover {
  transform: translateY(-5px);
}

.security-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.security-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.security-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.data-protection {
  padding: 80px 0;
  background: #f8f9fa;
}

.data-protection h2 {
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
}

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

.protection-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.protection-item h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.protection-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.regulatory-compliance {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.regulatory-compliance h2 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.5rem;
}

.regulatory-compliance .section-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

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

.compliance-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.compliance-card:hover {
  transform: translateY(-3px);
}

.compliance-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.compliance-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.account-security {
  padding: 80px 0;
  background: #f8f9fa;
}

.account-security h2 {
  color: var(--text-primary);
  margin-bottom: 3rem;
  text-align: center;
  font-size: 2.5rem;
}

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

.tip-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.tip-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.tip-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-security {
  padding: 60px 0;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.contact-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.contact-method {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.contact-security .btn {
  background: white;
  color: var(--text-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.contact-security .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Mobile responsiveness for additional pages */
@media (max-width: 768px) {
  .about-intro h2,
  .stats-section h2,
  .mission-content h2,
  .security-intro h2,
  .data-protection h2,
  .regulatory-compliance h2,
  .account-security h2 {
    font-size: 2rem;
  }

  .about-intro .lead,
  .mission-text,
  .security-intro .lead {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2rem;
  }

  .mission-values {
    grid-template-columns: 1fr;
  }

  .security-contact {
    flex-direction: column;
    align-items: center;
  }
}

/* FAQ Page Styles */
.important-notice {
  background: #fee;
  border: 3px solid #dc2626;
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.1);
}

.important-notice h2 {
  color: #dc2626;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.notice-text {
  color: #7f1d1d;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.notice-text strong {
  font-weight: 700;
}

.notice-text a {
  color: #dc2626;
  font-weight: 600;
  text-decoration: underline;
}

.faq-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.95);
}

.faq-categories {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 3rem;
}

.faq-category h2 {
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-size: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--primary-color);
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

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

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
  background: var(--primary-color);
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid #e9ecef;
}

.faq-answer a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.contact-support {
  padding: 60px 0;
  background: var(--primary-gradient);
  color: white;
  text-align: center;
}

.support-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.support-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.support-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.support-actions .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-decoration: none;
}

.support-actions .btn-primary {
  background: white;
  color: var(--text-primary);
  border: none;
}

.support-actions .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.support-actions .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.support-actions .btn-outline:hover {
  background: white;
  color: var(--text-primary);
}

/* Mobile responsiveness for FAQ */
@media (max-width: 768px) {
  .important-notice {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
    border-radius: 12px;
    overflow-x: hidden;
  }

  .important-notice h2 {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .notice-text {
    font-size: 1rem;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .notice-text strong {
    display: block;
    margin-bottom: 0.5rem;
  }

  .faq-category h2 {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 1rem;
  }

  .support-actions {
    flex-direction: column;
    align-items: center;
  }

  .support-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--primary-gradient);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Dark theme body background */
[data-theme="dark"] body {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #ffd700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade in animation for content */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.3s; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Glass morphism effect for cards */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/*
===============================================
2. LAYOUT COMPONENTS
===============================================
*/

/* Age Badge - Fixed position age restriction indicator */
.age-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #dc2626;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  z-index: 1000;
}

/*
===============================================
3. HEADER AND NAVIGATION
===============================================
*/

/* Header - Sticky navigation with glass morphism effect */
.header {
  background: rgba(30, 58, 138, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header:hover {
  background: rgba(30, 58, 138, 0.98);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

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

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .logo {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #ffd700;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(255, 215, 0, 0.2);
}

/* Header controls container */
.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme toggle button */
.theme-toggle {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.theme-icon {
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

[data-theme="dark"] .theme-icon {
  transform: rotate(180deg);
}

[data-theme="dark"] .theme-icon::before {
  content: '☀️';
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/*
===============================================
4. BUTTONS AND INTERACTIVE ELEMENTS
===============================================
*/

/* Buttons - Modern gradient buttons with hover effects */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 114, 128, 0.6);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: #667eea;
  border: 2px solid #667eea;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a202c;
  font-size: 18px;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  font-weight: 700;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  filter: brightness(1.1);
}

.btn-emergency {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.btn-emergency:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

/*
===============================================
5. HERO SECTIONS
===============================================
*/

/* Hero Section - Main landing area with animated background */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ffd700 100%);
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  font-weight: 600;
  animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.7;
  animation: slideInUp 1s ease-out 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero {
  background: #2563eb;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.responsible-hero {
  background: #ea580c;
}

.cookie-hero {
  background: #7c3aed;
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/*
===============================================
6. CONTENT SECTIONS
===============================================
*/

/* Statistics Section */
.stats-section {
  padding: 100px 0;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Info Section */
.info-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
}

.section-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 3rem;
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ffd700 100%);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Jackpots Section */
.jackpots-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
}

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

.jackpot-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  text-align: center;
}

.jackpot-card.featured {
  background: var(--secondary-gradient);
  color: var(--text-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.jackpot-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.jackpot-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.jackpot-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.draw-date {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.jackpot-amount {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jackpot-card.featured .jackpot-amount {
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: initial;
}

.jackpot-info p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.95);
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.faq-question:hover {
  background: rgba(102, 126, 234, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: var(--transition-normal);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(102, 126, 234, 0.02);
}

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

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps Section */
.steps-section {
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 12px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.step-content p {
  color: #6b7280;
}

.step-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* Info Highlight */
.info-highlight {
  padding: 80px 0;
  background: #eff6ff;
  border-top: 4px solid #3b82f6;
  border-bottom: 4px solid #3b82f6;
}

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

.info-highlight h2 {
  color: #1e40af;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.info-highlight p {
  color: #1f2937;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.features-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  padding: 0.5rem 0;
  color: #374151;
}

/* Results Section */
.results-section {
  padding: 80px 0;
}

.results-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

.results-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.draw-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.draw-info p {
  color: #6b7280;
}

.prize-info {
  text-align: right;
}

.prize-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.prize-amount {
  font-size: 1.125rem;
  font-weight: bold;
  color: #16a34a;
}

.prize-amount.jackpot {
  color: #dc2626;
}

.result-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.numbers-section h4,
.prize-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.winning-numbers,
.supplementary-numbers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  border-radius: 50%;
}

.number:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.number.supplementary {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.number.supplementary:hover {
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
}

.supplementary-section p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.prize-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prize-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.prize-row:last-child {
  border-bottom: none;
}

/* Odds Section */
.odds-section {
  padding: 60px 0;
  background: #f8fafc;
}

.odds-section h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

.odds-content {
  max-width: 800px;
  margin: 0 auto;
}

.odds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.odds-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.odds-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.odds-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.odds-row:last-child {
  border-bottom: none;
}

.draw-info-list {
  list-style: none;
  padding: 0;
}

.draw-info-list li {
  padding: 0.5rem 0;
  color: #374151;
}

/* Responsible Gambling Section */
.responsible-section {
  padding: 60px 0;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-right: 4px solid #f59e0b;
}

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

.responsible-section h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #92400e;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.responsible-section p {
  font-size: 1.2rem;
  color: #78350f;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.help-links a {
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 2px solid #1d4ed8;
  transition: all 0.3s ease;
}

.help-links a:hover {
  color: white;
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.help-links span {
  color: #78350f;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Alert Section */
.alert-section {
  padding: 60px 0;
  background: #fef2f2;
  border-left: 4px solid #ef4444;
}

.alert-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.alert-icon {
  font-size: 4rem;
  flex-shrink: 0;
}

.alert-text h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #dc2626;
}

.alert-text p {
  color: #7f1d1d;
  margin-bottom: 0.5rem;
}

/* Help Resources */
.help-resources {
  padding: 80px 0;
}

.help-resources h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

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

.resource-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.resource-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.resource-icon {
  font-size: 1.5rem;
}

.resource-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.resource-card p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.resource-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.contact-label {
  color: #6b7280;
}

.contact-value {
  font-weight: 600;
  color: #2563eb;
}

.resource-link {
  color: #2563eb;
  text-decoration: none;
}

.resource-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.emergency-contact {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.emergency-contact h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1rem;
}

.emergency-contact p {
  color: #7f1d1d;
  margin-bottom: 1rem;
}

.emergency-number {
  font-size: 2rem;
  font-weight: bold;
  color: #dc2626;
  margin: 1rem 0;
}

.emergency-note {
  font-size: 0.875rem;
  color: #991b1b;
}

/* Warning Signs */
.warning-signs {
  padding: 80px 0;
  background: #f8fafc;
}

.warning-signs h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.warning-signs .section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

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

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.warning-icon {
  color: #ea580c;
  flex-shrink: 0;
}

.warning-cta {
  text-align: center;
}

.warning-cta p {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* Self Help */
.self-help {
  padding: 80px 0;
}

.self-help h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

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

.tool-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.tool-card ul {
  list-style: none;
  padding: 0;
}

.tool-card li {
  padding: 0.5rem 0;
  color: #374151;
}

/* Age Verification */
.age-verification {
  padding: 60px 0;
  background: #eff6ff;
}

.age-verification h2 {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.age-verification .section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.commitment-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.commitment-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.commitment-box ul {
  list-style: none;
  padding: 0;
}

.commitment-box li {
  padding: 0.5rem 0;
  color: #374151;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #1f2937;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
  padding: 80px 0;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #1f2937;
}

.last-updated {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 3rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.legal-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: #374151;
}

.legal-section p {
  margin-bottom: 1rem;
  color: #374151;
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: #374151;
  line-height: 1.6;
}

.legal-section a {
  color: #2563eb;
  text-decoration: none;
}

.legal-section a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Legal Page Boxes - Removed duplicate styles, using main .important-notice styles */

.highlight-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.highlight-box p {
  color: #1e40af;
  font-weight: 600;
  margin: 0;
}

.warning-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.warning-box p {
  color: #92400e;
  font-weight: 600;
  margin: 0;
}

.important-reminders {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.important-reminders h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1f2937;
}

.important-reminders ul {
  list-style: none;
  padding: 0;
}

.important-reminders li {
  padding: 0.5rem 0;
  color: #374151;
}

/* Cookie Policy Specific */
.cookie-types {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-type-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.cookie-type-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-info {
  flex-grow: 1;
}

.cookie-info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.cookie-info p {
  color: #6b7280;
  margin: 0;
}

.cookie-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  flex-shrink: 0;
}

.cookie-status.required {
  background: #fef2f2;
  color: #dc2626;
}

.cookie-status.optional {
  background: #f0fdf4;
  color: #16a34a;
}

.cookie-examples h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.cookie-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-examples li {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0.25rem 0;
}

/* Age Restriction Page */
.age-restriction-page {
  min-height: 100vh;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.restriction-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
}

.restriction-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.restriction-content h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1.5rem;
}

.restriction-message {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.restriction-notice {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.restriction-notice p {
  color: #dc2626;
  font-weight: 600;
  margin: 0;
}

.help-section {
  margin-top: 2rem;
}

.help-section p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.help-resources {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.help-resources h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 1rem;
}

.help-resources ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-resources li {
  font-size: 0.875rem;
  color: #1e40af;
  padding: 0.25rem 0;
}

.return-link {
  margin-top: 2rem;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-column h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-column p {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

/* Footer Regulators Section */
.footer-regulators {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.footer-regulators h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

/* Legacy support for old class name */
.regulator-section {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid #374151;
  border-bottom: 1px solid #374151;
}

.regulator-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
}

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

.regulator-icon {
  height: 60px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  transition: all var(--transition-normal);
  border-radius: 8px;
  background: white;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.regulator-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content.cookie-settings {
  max-width: 700px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #374151;
}

.modal-buttons {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
}

.modal-buttons .btn {
  flex: 1;
}

.modal-disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  padding: 0 2rem 1.5rem;
}

.modal-disclaimer a {
  color: #2563eb;
  text-decoration: none;
}

.modal-disclaimer a:hover {
  text-decoration: underline;
}

/* Age Gate Modal */
.age-gate {
  padding: 2rem;
}

.age-gate-header {
  text-align: center;
  margin-bottom: 2rem;
}

.age-icon {
  width: 64px;
  height: 64px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.age-gate-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.age-gate-header p {
  color: #6b7280;
}

.age-gate form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.age-gate label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 0.5rem;
}

.date-inputs select {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.75rem;
  font-size: 1rem;
  background: white;
}

.date-inputs select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2563eb;
  border-color: #2563eb;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 0.75rem;
  color: #dc2626;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 6px;
  padding: 0.75rem;
  color: #92400e;
  font-size: 0.875rem;
  margin: 1rem 0;
}

.disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1.5rem;
}

.disclaimer a {
  color: #2563eb;
  text-decoration: none;
}

.disclaimer a:hover {
  text-decoration: underline;
}

/* Cookie Banner - Small popup in bottom right */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 1.5rem;
  max-width: 350px;
  width: calc(100vw - 40px);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

[data-theme="dark"] .cookie-banner {
  background: rgba(45, 55, 72, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cookie-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.cookie-icon {
  font-size: 1.2rem;
}

.cookie-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-normal);
}

.cookie-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-primary);
}

.cookie-text {
  margin-bottom: 1rem;
}

.cookie-text p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.cookie-buttons .btn-primary {
  background: var(--primary-gradient);
}

.cookie-buttons .btn-secondary {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-secondary);
}

.cookie-buttons .btn-secondary:hover {
  background: var(--text-muted);
  color: white;
}

/* Cookie Preferences Section */
.cookie-preferences-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  color: white;
}

.cookie-preferences-content {
  max-width: 900px;
  margin: 0 auto;
}

.preferences-header {
  text-align: center;
  margin-bottom: 3rem;
}

.preferences-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--secondary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preferences-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.cookie-settings-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cookie-setting-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-normal);
}

.cookie-setting-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.cookie-setting-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.cookie-setting-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.cookie-setting-info p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

.cookie-toggle {
  flex-shrink: 0;
}

.always-active {
  background: rgba(255, 215, 0, 0.2);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--secondary-color);
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition-normal);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
  background: var(--secondary-gradient);
  border-color: var(--secondary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.cookie-setting-details {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cookie-examples {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.cookie-examples strong {
  color: var(--secondary-color);
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-status-message {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-md);
  color: #86efac;
}

.cookie-status-message p {
  margin: 0;
  font-weight: 600;
}

/* Cookie Settings */
.cookie-categories {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cookie-category {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.category-header > div:first-child {
  flex-grow: 1;
}

.category-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.category-header p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.always-active {
  background: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.category-description {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2563eb;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero {
    padding: 100px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    padding: 2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions-desktop {
    display: none;
  }

  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-actions-mobile .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    font-weight: 600;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .btn-cta {
    font-size: 16px;
    padding: 14px 28px;
  }

  .result-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .regulator-icons {
    gap: 1rem;
  }

  .regulator-icon {
    height: 50px;
    max-width: 100px;
  }

  .cookie-preferences-section {
    padding: 60px 0;
  }

  .preferences-header h2 {
    font-size: 2rem;
  }

  .cookie-setting-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: center;
  }

  .cookie-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .cookie-banner {
    bottom: 10px;
    right: 10px;
    max-width: 300px;
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-buttons .btn {
    flex: none;
  }

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .result-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .prize-info {
    text-align: left;
  }

  .alert-content {
    flex-direction: column;
    text-align: center;
  }

  .help-links {
    justify-content: center;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Large mobile devices */
@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .section-content h2 {
    font-size: 2rem;
  }

  .feature-icon {
    font-size: 3.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .btn-cta {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

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

  .hero-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .section-content h2 {
    font-size: 1.75rem;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-icon {
    font-size: 3rem;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .winning-numbers,
  .supplementary-numbers {
    justify-content: center;
  }

  .cookie-banner {
    bottom: 5px;
    right: 5px;
    max-width: 280px;
    padding: 0.75rem;
  }

  .cookie-title {
    font-size: 0.9rem;
  }

  .cookie-text p {
    font-size: 0.8rem;
  }

  .cookie-buttons .btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .modal-content {
    margin: 0.5rem;
  }

  .age-gate {
    padding: 1.5rem;
  }

  .restriction-content {
    padding: 2rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .btn-cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  .info-section {
    padding: 60px 0;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .btn-cta {
    font-size: 13px;
    padding: 8px 16px;
  }

  .modal-content {
    margin: 0.25rem;
  }

  .age-gate {
    padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .age-badge,
  .cookie-banner,
  .modal-overlay,
  .nav-toggle {
    display: none !important;
  }

  .header {
    position: static;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .container {
    max-width: none;
    padding: 0;
  }

  .hero,
  .page-hero {
    background: none !important;
    color: #000 !important;
  }

  .btn {
    border: 1px solid #000 !important;
    background: none !important;
    color: #000 !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .btn-outline {
    border: 2px solid #000;
    color: #000;
  }

  .feature-card,
  .result-card,
  .resource-card {
    border: 2px solid #000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
select:focus,
input:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/*
===============================================
ACCESSIBILITY STYLES
===============================================
*/

/* Skip link for keyboard navigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--text-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Enhanced focus styles */
*:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 2px;
}

/* High contrast focus for buttons */
.btn:focus {
  outline: 3px solid var(--secondary-color);
  outline-offset: 3px;
}

/* Keyboard navigation improvements */
.nav-link:focus,
.theme-toggle:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
  background: rgba(255, 215, 0, 0.2);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Additional Mobile Responsiveness Fixes */
@media (max-width: 768px) {
  /* Responsible section mobile fixes */
  .responsible-section {
    padding: 40px 0;
    overflow-x: hidden;
  }

  .responsible-section .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .responsible-section h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    word-wrap: break-word;
  }

  .responsible-section p {
    font-size: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
  }

  .help-links {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }

  .help-links a {
    font-size: 1rem;
    padding: 0.75rem;
    word-wrap: break-word;
    white-space: normal;
  }

  .help-links span {
    font-size: 1rem;
    display: block;
    margin: 0.5rem 0;
  }

  /* Responsible banner mobile fixes */
  .responsible-banner {
    overflow-x: hidden;
  }

  .responsible-banner .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  .banner-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
  }

  .banner-content span {
    word-wrap: break-word;
    line-height: 1.4;
  }

  /* General mobile overflow fixes */
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-x: hidden;
  }

  /* Text wrapping for long content */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
  }

  p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Prevent horizontal scroll on mobile */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Fix for specific problematic elements */
  .mandatory-statements,
  .statement-box,
  .faq-notice,
  .important-notice,
  .key-message,
  .alert-content {
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
  }

  /* Ensure tables don't overflow */
  .cookie-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Fix for long URLs and text */
  a {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Navigation mobile fixes */
  .nav-menu {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-actions-mobile .btn {
    white-space: normal;
    word-wrap: break-word;
  }
}
