/* GlassPlayZone - Glassmorphism Design */

:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --color-primary: #667eea;
  --color-secondary: #764ba2;
  --color-accent: #f093fb;
  --color-light: #f5f7fa;
  --color-dark: #2d3748;
  --color-white: #ffffff;
  --blur-amount: 20px;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--color-dark);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Background Gradient Blobs */
.bg-blobs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #667eea, #764ba2);
  top: -10%;
  left: -10%;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #f093fb, #f5576c);
  top: 20%;
  right: -5%;
  animation-delay: 5s;
}

.blob-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4facfe, #00f2fe);
  bottom: -15%;
  left: 10%;
  animation-delay: 10s;
}

.blob-4 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #43e97b, #38f9d7);
  bottom: 10%;
  right: 15%;
  animation-delay: 15s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Glass Effect Mixin */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

/* Age Verification Modal */
.age-modal {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.age-glass {
  max-width: 500px;
  width: 90%;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: white;
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.glass-panel h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.age-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.age-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

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

.btn-glass {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: bottom 0.5s ease;
  padding: 1.5rem;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-glass {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  color: white;
}

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

.cookie-glass p {
  flex: 1;
  min-width: 250px;
}

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

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Transparent Header */
.transparent-header {
  position: relative;
  min-height: 100vh;
}

.navbar-glass {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-glass {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-glass:hover {
  transform: translateY(-2px);
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero Glass */
.hero-glass {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

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

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 800;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.glass-accent {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tag-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  color: white;
  font-weight: 500;
}

.tag-glass i {
  margin-right: 0.5rem;
}

.btn-hero {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-hero i {
  margin-right: 0.5rem;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  width: 200px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-1 {
  top: 15%;
  left: 10%;
  animation: floatCard 8s ease-in-out infinite;
}

.card-2 {
  top: 25%;
  right: 15%;
  animation: floatCard 10s ease-in-out infinite 2s;
}

.card-3 {
  bottom: 20%;
  left: 20%;
  animation: floatCard 9s ease-in-out infinite 4s;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

/* Section Styling */
section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
}

/* Frosted Features */
.frosted-features {
  background: rgba(0, 0, 0, 0.05);
}

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

.feature-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  text-align: center;
  color: white;
}

.feature-glass:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-glass h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-glass p {
  line-height: 1.8;
  opacity: 0.9;
}

/* Glass Games Showcase */
.glass-games {
  background: rgba(255, 255, 255, 0.05);
}

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

.game-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 2rem;
  transition: var(--transition-smooth);
  position: relative;
  color: white;
  overflow: hidden;
}

.game-glass:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.game-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.game-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-glass h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.game-glass p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.game-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.game-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-play {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-play:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-play i {
  margin-right: 0.5rem;
}

/* Game Modal */
.game-modal {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.game-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-modal-content {
  position: relative;
  width: 95%;
  height: 95%;
  max-width: 1400px;
  max-height: 900px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.game-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5001;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.game-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.game-container {
  width: 100%;
  height: 100%;
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Clarity and Trust */
.clarity-trust {
  background: rgba(0, 0, 0, 0.08);
}

.trust-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.trust-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 2rem;
  color: white;
  transition: var(--transition-smooth);
}

.trust-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

.trust-glass.large {
  text-align: center;
  padding: 3rem;
}

.trust-glass.large i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.trust-glass.large h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.trust-glass.large p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

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

.trust-grid .trust-glass i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.trust-grid .trust-glass h4 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.trust-grid .trust-glass p {
  opacity: 0.9;
  line-height: 1.7;
}

.disclaimer-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disclaimer-glass i {
  font-size: 2rem;
  flex-shrink: 0;
}

.disclaimer-glass p {
  line-height: 1.8;
}

/* Contact Pane */
.contact-pane {
  background: rgba(255, 255, 255, 0.05);
}

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

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

.info-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 2rem;
  color: white;
  transition: var(--transition-smooth);
}

.info-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(10px);
}

.info-glass i {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.info-glass h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-glass p {
  line-height: 1.8;
  opacity: 0.9;
}

.info-glass a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.info-glass a:hover {
  opacity: 1;
}

.contact-form-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 2.5rem;
  color: white;
}

.contact-form-glass h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

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

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
}

.form-group textarea + i {
  top: 1.5rem;
  transform: none;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-submit i {
  margin-right: 0.5rem;
}

/* Legal Reflection */
.legal-reflection {
  background: rgba(0, 0, 0, 0.08);
}

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

.legal-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 2.5rem;
  text-decoration: none;
  color: white;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.legal-glass::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 ease;
}

.legal-glass:hover::before {
  left: 100%;
}

.legal-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.legal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-glass h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.legal-glass p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.legal-arrow {
  font-size: 1.5rem;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.legal-glass:hover .legal-arrow {
  transform: translateX(10px);
  opacity: 1;
}

/* Footer (Same as ReefPlayHub) */
.footer {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-section p {
  line-height: 1.8;
  opacity: 0.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .glass-panel {
    padding: 2rem 1.5rem;
  }

  section {
    padding: 4rem 0;
  }
}

/* Legal Pages */
/* Coral Header for Legal Pages */
.coral-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}

.navbar {
  width: 100%;
}

.navbar .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.navbar .logo:hover {
  transform: translateY(-2px);
}

.navbar .logo i {
  font-size: 1.5rem;
}

.legal-page {
  min-height: 100vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  color: white;
}

.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.legal-date {
  opacity: 0.7;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.legal-content p {
  line-height: 1.9;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

.legal-content li {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.legal-content strong {
  font-weight: 700;
}

.legal-contact {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid rgba(255, 255, 255, 0.5);
  margin: 2rem 0;
}

.back-home {
  display: inline-block;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.back-home:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 35px auto;
}

.footer-legal img {
  height: 60px;
}
