﻿/* =====================================================
/* GATEPPLUS - Main Stylesheet
   Clean, neutral design for informational aggregator
   ===================================================== */

:root {
  --gat-primary: #7c3aed;
  --gat-secondary: #a78bfa;
  --gat-accent: #ec4899;
  --gat-neutral-dark: #1f2937;
  --gat-neutral-light: #f3f4f6;
  --gat-border: #e5e7eb;
  --gat-text: #374151;
  --gat-light-text: #6b7280;
  --gat-spacing-xs: 0.5rem;
  --gat-spacing-sm: 1rem;
  --gat-spacing-md: 1.5rem;
  --gat-spacing-lg: 2rem;
  --gat-spacing-xl: 3rem;
  --gat-radius: 10px;
  --gat-radius-lg: 14px;
  --gat-shadow: 0 1px 3px rgba(0,0,0,0.1);
  --gat-shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --gat-header-bg: #0f172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gat-text);
  background: #ffffff;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--gat-header-bg);
  margin-bottom: var(--gat-spacing-md);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--gat-spacing-lg);
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--gat-spacing-lg);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--gat-spacing-md);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--gat-spacing-md);
  color: var(--gat-light-text);
}

a {
  color: var(--gat-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gat-secondary);
  text-decoration: underline;
}

/* === HEADER === */
.gat-header {
  background: var(--gat-header-bg);
  border-bottom: 1px solid var(--gat-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--gat-shadow);
  overflow: visible;
}

.gat-header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--gat-spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.gat-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.gat-logo a {
  color: #ffffff;
  text-decoration: none;
}

.gat-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.gat-mobile-menu {
  display: none !important;
  flex-direction: row;
  gap: var(--gat-spacing-md);
  background: transparent;
  position: static;
  width: auto;
  padding: 0;
  margin: 0;
  border: none;
}

.gat-mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: var(--gat-spacing-sm);
  display: inline-block;
  font-size: 14px;
  border-bottom: none;
  transition: all 0.2s ease;
}

.gat-mobile-menu a:hover {
  color: #a78bfa;
  text-decoration: underline;
  background: transparent;
}

/* === MAIN CONTENT === */
#main-content {
  flex: 1;
}

main > section {
  padding: var(--gat-spacing-xl) var(--gat-spacing-md);
}

/* === HERO SECTION === */
.gat-hero {
  background: linear-gradient(135deg, var(--gat-header-bg) 0%, #1a2744 100%);
  padding: 5rem var(--gat-spacing-md);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.gat-hero .gat-container {
  display: flex;
  align-items: center;
  min-height: 300px;
}

.gat-hero:before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.gat-hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.gat-hero h1 {
  color: #ffffff;
  margin-bottom: var(--gat-spacing-lg);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.gat-hero p {
  font-size: 1.1rem;
  margin-bottom: var(--gat-spacing-md);
  color: #cbd5e1;
  line-height: 1.8;
}

.gat-hero p:last-child {
  margin-bottom: 0;
}

/* === INTRO BLOCK === */
.gat-intro {
  margin: var(--gat-spacing-xl) auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.gat-intro h2 {
  color: var(--gat-header-bg);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--gat-spacing-lg);
}

.gat-intro-grid {
  display: block;
  margin-top: 0;
}

.gat-intro-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: none;
}

.gat-intro-card:hover {
  transform: none;
  box-shadow: none;
}

.gat-intro-card h3 {
  display: none;
}

.gat-intro-card p {
  color: var(--gat-light-text);
  line-height: 1.7;
  padding: 0;
  margin: 0;
}

.gat-intro p {
  color: var(--gat-light-text);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* === OPERATORS SECTION === */
.gat-operators {
  max-width: 1200px;
  margin: var(--gat-spacing-xl) auto;
  padding: 0 var(--gat-spacing-lg);
}

.gat-operators h2 {
  text-align: left;
  margin-bottom: var(--gat-spacing-lg);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gat-header-bg);
}

.gat-operators > p {
  color: var(--gat-light-text);
  margin-bottom: var(--gat-spacing-xl);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 1000px;
  text-align: left;
}

.gat-operators-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gat-spacing-xl);
  margin-bottom: var(--gat-spacing-xl);
}

/* === OPERATOR CARD === */
.gat-card {
  background: #ffffff;
  border: 2px solid var(--gat-border);
  border-radius: var(--gat-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0 auto var(--gat-spacing-lg);
  min-height: auto;
}

.gat-card:hover {
  border-color: var(--gat-primary);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}

.gat-card-badge {
  position: absolute;
  top: var(--gat-spacing-sm);
  right: var(--gat-spacing-sm);
  background: linear-gradient(135deg, var(--gat-accent) 0%, #ff6b9d 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gat-card-header {
  position: relative;
  padding: var(--gat-spacing-lg);
  background: linear-gradient(135deg, var(--gat-primary) 0%, var(--gat-secondary) 100%);
  border-right: 1px solid var(--gat-border);
  min-height: auto;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Unique colors for each operator card */
.gat-card:nth-child(1) .gat-card-header {
  background: linear-gradient(135deg, #e53935 0%, #f57c00 100%);
}

.gat-card:nth-child(2) .gat-card-header {
  background: linear-gradient(135deg, #7b1fa2 0%, #e91e63 100%);
}

.gat-card:nth-child(3) .gat-card-header {
  background: linear-gradient(135deg, #00796b 0%, #00bcd4 100%);
}

.gat-card:nth-child(4) .gat-card-header {
  background: linear-gradient(135deg, #388e3c 0%, #7cb342 100%);
}

.gat-card:nth-child(5) .gat-card-header {
  background: linear-gradient(135deg, #ff6f00 0%, #fbc02d 100%);
}

.gat-card:nth-child(6) .gat-card-header {
  background: linear-gradient(135deg, #1565c0 0%, #3949ab 100%);
}

.gat-card:nth-child(7) .gat-card-header {
  background: linear-gradient(135deg, #c2185b 0%, #d32f2f 100%);
}

.gat-card-logo {
  max-width: 140px;
  width: 100%;
  height: 80px;
  object-fit: contain;
}

.gat-card-body {
  padding: var(--gat-spacing-lg);
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: var(--gat-spacing-xl);
  align-items: stretch;
}

.gat-card-body-row {
  flex-direction: row !important;
}

.gat-card-info {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gat-card-assessment {
  display: flex;
  flex-direction: column;
  gap: var(--gat-spacing-md);
  min-width: 220px;
  justify-content: flex-end;
}

.gat-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gat-header-bg);
  margin-bottom: var(--gat-spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gat-card-description {
  color: var(--gat-light-text);
  margin-bottom: var(--gat-spacing-md);
  font-size: 0.95rem;
  line-height: 1.6;
}

.gat-card-features {
  list-style: none;
  margin-bottom: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gat-card-features li {
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: var(--gat-spacing-sm);
  color: var(--gat-text);
  font-size: 0.9rem;
}

.gat-card-features li:before {
  content: '→';
  color: var(--gat-primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.gat-card-rating {
  display: flex;
  align-items: center;
  gap: var(--gat-spacing-sm);
  margin-bottom: var(--gat-spacing-md);
  padding: var(--gat-spacing-md);
  background: var(--gat-neutral-light);
  border-radius: var(--gat-radius);
}

.gat-card-rating-label {
  font-size: 0.8rem;
  color: var(--gat-light-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gat-card-rating-value {
  display: flex;
  gap: 2px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gat-accent);
}

.gat-card-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--gat-primary) 0%, var(--gat-secondary) 100%);
  color: #ffffff;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: var(--gat-radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gat-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

/* === CONTENT SECTIONS === */
.gat-content-section {
  max-width: 1100px;
  margin: var(--gat-spacing-xl) auto;
  padding: 0 var(--gat-spacing-md);
}

.gat-content-section h2 {
  color: var(--gat-header-bg);
  margin-bottom: var(--gat-spacing-lg);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gat-content-section > p {
  color: var(--gat-light-text);
  margin-bottom: var(--gat-spacing-xl);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 900px;
}

.gat-content-grid {
  display: block;
  margin-bottom: var(--gat-spacing-xl);
}

.gat-content-item {
  border-radius: var(--gat-radius-lg);
  transition: all 0.3s ease;
}

.gat-content-item:hover {
  transform: translateX(0);
  box-shadow: none;
}

.gat-content-item h3 {
  display: none;
}

.gat-content-item p {
  color: var(--gat-light-text);
  line-height: 1.7;
  padding: 0;
  margin: 0 0 var(--gat-spacing-lg) 0;
}

.gat-content-item p:last-child {
  margin-bottom: 0;
}

/* === TESTIMONIALS === */
.gat-testimonials {
  max-width: 1100px;
  margin: var(--gat-spacing-xl) auto;
  padding: 0 var(--gat-spacing-md);
}

.gat-testimonials h2 {
  text-align: left;
  margin-bottom: var(--gat-spacing-xl);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gat-header-bg);
}

.gat-testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gat-spacing-xl);
}

.gat-testimonial {
  padding: var(--gat-spacing-xl);
  background: linear-gradient(135deg, var(--gat-neutral-light) 0%, #ffffff 100%);
  border-radius: var(--gat-radius-lg);
  border: 2px solid var(--gat-border);
  border-left: 5px solid var(--gat-accent);
  transition: all 0.3s ease;
}

.gat-testimonial:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.15);
}

.gat-testimonial-text {
  font-style: italic;
  color: var(--gat-text);
  margin-bottom: var(--gat-spacing-lg);
  line-height: 1.8;
  font-size: 1.05rem;
}

.gat-testimonial-author {
  font-weight: 700;
  color: var(--gat-header-bg);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 20px;
}

.gat-testimonial-author:before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gat-accent);
}

/* === FOOTER === */
.gat-footer {
  background: var(--gat-header-bg);
  color: #ffffff;
  padding: var(--gat-spacing-xl) var(--gat-spacing-md);
  margin-top: var(--gat-spacing-xl);
}

.gat-footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.gat-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gat-spacing-xl);
  margin-bottom: var(--gat-spacing-xl);
}

.gat-footer-section h3 {
  color: #ffffff;
  margin-bottom: var(--gat-spacing-md);
}

.gat-footer-section ul {
  list-style: none;
}

.gat-footer-section a {
  color: #e8eaed;
  transition: color 0.2s ease;
}

.gat-footer-section a:hover {
  color: #ffffff;
}

.gat-footer-links {
  display: flex;
  gap: var(--gat-spacing-lg);
  margin-bottom: var(--gat-spacing-lg);
  flex-wrap: wrap;
}

.gat-footer-logo {
  display: flex;
  align-items: center;
  gap: var(--gat-spacing-sm);
  margin-bottom: var(--gat-spacing-md);
}

.gat-footer-text {
  color: #e8eaed;
  font-size: 0.9rem;
  margin-bottom: var(--gat-spacing-md);
}

.gat-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--gat-spacing-lg);
  text-align: center;
  color: #9aa0a6;
  font-size: 0.85rem;
}

.gat-footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.gat-footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: var(--gat-spacing-lg);
  margin-bottom: var(--gat-spacing-md);
  flex-wrap: wrap;
}

.gat-footer-bottom-links a {
  color: #9aa0a6;
}

/* === MODAL / AGE GATE === */
#gat-age-gate {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#gat-age-gate:not(.hidden) {
  display: flex;
}

#gat-age-gate.hidden {
  display: none;
}

.gat-age-gate-modal {
  background: #ffffff;
  border-radius: var(--gat-radius-lg);
  padding: 3rem;
  max-width: 500px;
  margin: var(--gat-spacing-md);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gat-age-gate-modal h1 {
  color: var(--gat-header-bg);
  margin-bottom: var(--gat-spacing-lg);
  font-size: 1.8rem;
}

.gat-age-gate-modal p {
  color: var(--gat-light-text);
  margin-bottom: var(--gat-spacing-xl);
  text-align: center;
}

.gat-age-gate-buttons {
  display: flex;
  gap: var(--gat-spacing-md);
  justify-content: center;
}

.gat-age-gate-btn {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--gat-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gat-age-gate-btn-yes {
  background: var(--gat-primary);
  color: #ffffff;
}

.gat-age-gate-btn-yes:hover {
  background: var(--gat-secondary);
}

.gat-age-gate-btn-no {
  background: #f0f0f0;
  color: var(--gat-header-bg);
  border: 1px solid var(--gat-border);
}

.gat-age-gate-btn-no:hover {
  background: #e8e8e8;
}

/* === FORM STYLES === */
.gat-form {
  max-width: 600px;
  margin: var(--gat-spacing-xl) auto;
}

.gat-form-group {
  margin-bottom: var(--gat-spacing-lg);
}

.gat-form-label {
  display: block;
  margin-bottom: var(--gat-spacing-sm);
  font-weight: 500;
  color: var(--gat-header-bg);
}

.gat-form-input,
.gat-form-textarea {
  width: 100%;
  padding: var(--gat-spacing-sm);
  border: 1px solid var(--gat-border);
  border-radius: var(--gat-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.gat-form-input:focus,
.gat-form-textarea:focus {
  outline: none;
  border-color: var(--gat-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.gat-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.gat-form-button {
  background: var(--gat-primary);
  color: #ffffff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--gat-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gat-form-button:hover {
  background: var(--gat-secondary);
}

/* === UTILITY CLASSES === */
.gat-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gat-spacing-md);
}

.gat-hidden {
  display: none !important;
}

.hidden {
  display: none !important;
}

.gat-text-center {
  text-align: center;
}

.gat-text-muted {
  color: var(--gat-light-text);
}

.gat-mt-lg {
  margin-top: var(--gat-spacing-lg);
}

.gat-mb-lg {
  margin-bottom: var(--gat-spacing-lg);
}

/* === REGULATORY LOGOS === */
.gat-regulatory-logos {
  display: flex;
  justify-content: center;
  gap: var(--gat-spacing-lg);
  margin: var(--gat-spacing-lg) 0;
  flex-wrap: wrap;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gat-regulatory-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis: calc(25% - var(--gat-spacing-lg));
}

.gat-regulatory-logo:nth-child(n+5) {
  flex-basis: calc(33.333% - var(--gat-spacing-lg));
}

.gat-regulatory-logo img,
.gat-regulatory-logo svg {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
  display: block;
}

.gat-regulatory-logo:hover img,
.gat-regulatory-logo:hover svg {
  opacity: 1;
}

.gat-regulatory-logo a {
  display: flex;
  align-items: center;
}

/* === WARNING/ALERT SECTION === */
.gat-warning {
  background: #1a3a52;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  border-left: 4px solid #ff8c00;
  border-radius: var(--gat-radius-lg);
}

.gat-warning h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.gat-warning p {
  color: #f0f0f0;
  margin: 0;
}

.gat-warning a {
  color: #ff8c00;
  text-decoration: underline;
}

.gat-warning a:hover {
  color: #ffb84d;
}

/* === COOKIE BANNER === */
.gat-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3a52;
  border-top: 4px solid #ff8c00;
  padding: 1.5rem;
  z-index: 999;
  display: none;
  align-items: center;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.gat-cookie-banner:not(.hidden) {
  display: flex;
}

.gat-cookie-banner.hidden {
  display: none;
}

.gat-cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.gat-cookie-banner-text {
  flex: 1;
  color: #f0f0f0;
}

.gat-cookie-banner-text p {
  margin: 0 0 0.5rem 0;
  font-size: 14px;
  line-height: 1.4;
}

.gat-cookie-banner-text a {
  color: #ff8c00;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gat-cookie-banner-text a:hover {
  color: #ffb84d;
}

.gat-cookie-accept-btn {
  background: #7c3aed;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--gat-radius-md);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.gat-cookie-accept-btn:hover {
  background: #9b4aed;
}

.gat-cookie-accept-btn:active {
  background: #7c3aed;
}

/* === TURNSTILE MODAL === */
.turnstile-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  overflow-y: auto;
}

.turnstile-modal.active {
  display: flex;
}

.turnstile-modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.3s ease;
}

.turnstile-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.turnstile-modal-header h2 {
  margin: 0;
  color: var(--gat-header-bg);
  font-size: 1.5rem;
}

.turnstile-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.turnstile-modal-close:hover {
  color: #000;
}

.turnstile-modal-body {
  padding: 2rem;
}

.turnstile-modal-body p {
  color: var(--gat-light-text);
  margin-bottom: 1.5rem;
  text-align: center;
}

.turnstile-success-msg {
  text-align: center;
  color: var(--gat-accent);
  font-weight: 600;
  padding: 1rem;
  background: #f0f9f0;
  border-radius: 8px;
  border: 1px solid var(--gat-accent);
  margin: 1rem 0;
  display: none;
}

.turnstile-success-msg.show {
  display: block;
}

.turnstile-modal-footer {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
  justify-content: flex-end;
}

.turnstile-btn-cancel,
.turnstile-btn-proceed {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.turnstile-btn-cancel {
  background: #f0f0f0;
  color: var(--gat-text);
  border: 1px solid #dadce0;
}

.turnstile-btn-cancel:hover {
  background: #e8e8e8;
}

.turnstile-btn-proceed {
  background: var(--gat-primary);
  color: white;
  display: none;
}

.turnstile-btn-proceed.show {
  display: inline-block;
}

.turnstile-btn-proceed:hover {
  background: var(--gat-secondary);
}

.turnstile-btn-proceed:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .gat-header-content {
    flex-direction: row;
    gap: var(--gat-spacing-md);
    justify-content: space-between;
    align-items: center;
  }

  .gat-menu-toggle {
    display: block !important;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
  }

  .gat-mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #0f172a;
    flex-direction: column;
    z-index: 101;
    padding: 0;
    margin: 0;
  }

  .gat-mobile-menu.active {
    display: flex !important;
  }

  .gat-mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gat-mobile-menu a:last-child {
    border-bottom: none;
  }

  .gat-mobile-menu a:hover {
    background: rgba(124, 58, 237, 0.15);
  }

  .gat-hero {
    padding: 2rem var(--gat-spacing-md);
  }

  .gat-hero .gat-container {
    min-height: auto;
  }

  .gat-hero h1 {
    font-size: 1.8rem;
  }

  .gat-hero p {
    font-size: 1rem;
  }

  .gat-operators-grid,
  .gat-testimonials-grid,
  .gat-content-grid,
  .gat-intro-grid {
    flex-direction: column;
    gap: var(--gat-spacing-md);
  }

  /* Improved mobile card styles */
  .gat-card {
    flex-direction: column;
    width: 100%;
    margin: 0 0 var(--gat-spacing-md) 0;
    border: 1px solid var(--gat-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }

  .gat-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }

  .gat-card-header {
    min-width: 100%;
    min-height: 120px;
    border-right: none;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding: 1rem;
  }

  .gat-card-logo {
    max-width: 100px;
    height: 60px;
  }

  .gat-card-body {
    padding: 1.2rem;
    gap: var(--gat-spacing-md);
    flex-direction: column !important;
  }

  .gat-card-info {
    flex: 1;
  }

  .gat-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .gat-card-description {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .gat-card-features {
    display: none;
  }

  .gat-card-assessment {
    min-width: 100%;
    width: 100%;
    gap: var(--gat-spacing-sm);
  }

  .gat-card-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }

  .gat-card-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
  }

  main > section {
    padding: var(--gat-spacing-lg) var(--gat-spacing-md);
  }

  .gat-age-gate-modal {
    padding: 2rem;
    max-width: 90%;
  }

  .gat-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .gat-logo {
    font-size: 1.3rem;
  }

  .gat-mobile-menu a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .gat-mobile-menu a:hover {
    padding-left: 2rem;
  }

  .gat-card-header {
    min-height: 100px;
    padding: 0.8rem;
  }

  .gat-card-body {
    padding: 1rem;
  }

  .gat-card-title {
    font-size: 1.2rem;
  }

  .gat-card-description {
    font-size: 0.9rem;
  }

  .gat-card-rating-value {
    font-size: 1.4rem;
  }

  .gat-card-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }

  main > section {
    padding: 1.5rem 1rem;
  }

  p {
    font-size: 0.95rem;
  }
}

/* Desktop: Show menu horizontally */
@media (min-width: 769px) {
  .gat-menu-toggle {
    display: none;
  }

  .gat-mobile-menu {
    display: flex;
    flex-direction: row;
    position: static;
    width: auto;
    background: transparent;
    border: none;
    gap: var(--gat-spacing-md);
    padding: 0;
    box-shadow: none;
    top: auto;
    left: auto;
    z-index: auto;
  }

  .gat-mobile-menu a {
    padding: var(--gat-spacing-sm) var(--gat-spacing-md);
    border-bottom: none;
    display: inline-block;
  }

  .gat-mobile-menu a:hover {
    background: transparent;
    text-decoration: underline;
  }
}
