:root {
  --color-aquamarine: #7fffd4;
  --color-deep-blue: #003b5c;
  --color-ocean-blue: #006b9f;
  --color-light-blue: #4fc3f7;
  --color-white-sand: #fff8e7;
  --color-coral: #ff6b9d;
  --color-pearl: #f0f4f8;
  --color-wave: rgba(127, 255, 212, 0.3);
  --color-dark: #001b2e;
  --color-success: #26a69a;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #001b2e 0%, #003b5c 50%, #006b9f 100%);
  color: var(--color-white-sand);
  overflow-x: hidden;
  line-height: 1.6;
}

.age-modal {
  display: flex;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 27, 46, 0.95);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.5s ease;
}

.age-modal-content {
  position: relative;
  margin: auto;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-deep-blue) 0%,
    var(--color-ocean-blue) 100%
  );
  border-radius: 30px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideUpWave 0.8s ease;
  overflow: hidden;
}

.wave-modal::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 200%;
  height: 100px;
  background: var(--color-wave);
  border-radius: 50%;
  animation: waveFloat 3s ease-in-out infinite;
}

.age-icon {
  font-size: 4rem;
  color: var(--color-aquamarine);
  margin-bottom: 1rem;
  animation: anchorSwing 2s ease-in-out infinite;
}

.age-modal-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-aquamarine);
}

.age-modal-content p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-white-sand);
}

.age-subtitle {
  font-size: 0.95rem;
  color: var(--color-light-blue);
  margin-bottom: 2rem;
}

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

.age-buttons button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  color: var(--color-deep-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white-sand);
  border: 2px solid var(--color-white-sand);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--color-deep-blue),
    var(--color-ocean-blue)
  );
  padding: 1.5rem;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: bottom 0.6s ease;
  border-top: 3px solid var(--color-aquamarine);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content i {
  font-size: 2rem;
  color: var(--color-aquamarine);
}

.cookie-content p {
  flex: 1;
  min-width: 250px;
  font-size: 0.95rem;
}

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

.btn-accept,
.btn-learn-more {
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-accept {
  background: var(--color-aquamarine);
  color: var(--color-deep-blue);
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(127, 255, 212, 0.4);
}

.btn-learn-more {
  background: transparent;
  color: var(--color-white-sand);
  border: 2px solid var(--color-white-sand);
}

.btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.1);
}

.coral-header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 27, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 2px solid var(--color-aquamarine);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-aquamarine);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo i {
  font-size: 2rem;
  animation: waveIcon 2s ease-in-out infinite;
}

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

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

.nav-menu a {
  color: var(--color-white-sand);
  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: var(--color-aquamarine);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-aquamarine);
  font-size: 1.5rem;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.wave-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at 20% 50%,
      rgba(127, 255, 212, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 30%,
      rgba(79, 195, 247, 0.15) 0%,
      transparent 50%
    );
  animation: waveShift 10s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-light-blue);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-pearl);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btn-hero {
  padding: 1.25rem 3rem;
  font-size: 1.2rem;
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  color: var(--color-deep-blue);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(127, 255, 212, 0.3);
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(127, 255, 212, 0.5);
}

.btn-hero i {
  margin-left: 0.5rem;
  animation: bounce 2s infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-fish,
.floating-star,
.floating-gem {
  position: absolute;
  font-size: 2rem;
  opacity: 0.4;
  color: var(--color-aquamarine);
}

.floating-fish {
  top: 20%;
  left: 15%;
  animation: float 6s ease-in-out infinite;
}

.floating-star {
  top: 60%;
  right: 20%;
  animation: float 8s ease-in-out infinite 1s;
}

.floating-gem {
  bottom: 25%;
  left: 25%;
  animation: float 7s ease-in-out infinite 2s;
}

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

section {
  padding: 6rem 0;
  position: relative;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-aquamarine);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-aquamarine),
    transparent
  );
  margin: 1rem auto;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-light-blue);
  margin-bottom: 4rem;
}

.ocean-fun-map {
  background: linear-gradient(
    to bottom,
    var(--color-dark),
    var(--color-deep-blue)
  );
}

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

.fun-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.fun-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-aquamarine);
  box-shadow: 0 15px 40px rgba(127, 255, 212, 0.2);
}

.fun-icon {
  font-size: 3.5rem;
  color: var(--color-aquamarine);
  margin-bottom: 1.5rem;
}

.fun-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white-sand);
}

.fun-card p {
  color: var(--color-pearl);
  line-height: 1.8;
}

.deep-blue-games {
  background: linear-gradient(
    to bottom,
    var(--color-deep-blue),
    var(--color-ocean-blue)
  );
}

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

.game-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  overflow: hidden;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-aquamarine);
  box-shadow: 0 20px 50px rgba(127, 255, 212, 0.3);
}

.game-image {
  height: 250px;
  overflow: hidden;
}

.game-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: white;
  transition: var(--transition-smooth);
}

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

.game-content {
  padding: 2rem;
}

.game-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-aquamarine);
}

.game-content p {
  color: var(--color-pearl);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-play {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  color: var(--color-deep-blue);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(127, 255, 212, 0.4);
}

.game-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.game-badge {
  background: var(--color-coral);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

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

.game-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.game-modal-content {
  position: relative;
  width: 95%;
  height: 95%;
  max-width: 1400px;
  max-height: 900px;
  background: var(--color-deep-blue);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5001;
  background: var(--color-coral);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.game-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ff4081;
}

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

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

.safety-anchor {
  background: linear-gradient(
    to bottom,
    var(--color-ocean-blue),
    var(--color-deep-blue)
  );
}

.safety-header {
  text-align: center;
  margin-bottom: 4rem;
}

.safety-header i {
  font-size: 4rem;
  color: var(--color-aquamarine);
  margin-bottom: 1rem;
  animation: anchorSwing 3s ease-in-out infinite;
}

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

.safety-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.safety-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-success);
  box-shadow: 0 15px 40px rgba(38, 166, 154, 0.2);
}

.safety-card i {
  font-size: 3rem;
  color: var(--color-success);
  margin-bottom: 1.5rem;
}

.safety-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-aquamarine);
}

.safety-card p {
  color: var(--color-pearl);
  line-height: 1.8;
}

.disclaimer-box {
  background: rgba(255, 107, 157, 0.15);
  border: 2px solid var(--color-coral);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.disclaimer-box i {
  font-size: 2rem;
  color: var(--color-coral);
  flex-shrink: 0;
}

.disclaimer-box p {
  color: var(--color-white-sand);
  line-height: 1.8;
}

.contact-shore {
  background: linear-gradient(
    to bottom,
    var(--color-deep-blue),
    var(--color-dark)
  );
}

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

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

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--color-aquamarine);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card i {
  font-size: 2.5rem;
  color: var(--color-aquamarine);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white-sand);
}

.contact-card p {
  color: var(--color-pearl);
  line-height: 1.8;
}

.contact-card a {
  color: var(--color-light-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-card a:hover {
  color: var(--color-aquamarine);
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--color-aquamarine);
}

.contact-form h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--color-aquamarine);
  text-align: center;
}

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

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-aquamarine);
  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.08);
  border: 2px solid transparent;
  border-radius: 15px;
  color: var(--color-white-sand);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.btn-submit {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  color: var(--color-deep-blue);
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(127, 255, 212, 0.4);
}

.legal-tides {
  background: linear-gradient(
    to bottom,
    var(--color-dark),
    var(--color-deep-blue)
  );
}

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

.legal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(127, 255, 212, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

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

.legal-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-aquamarine);
  box-shadow: 0 15px 40px rgba(127, 255, 212, 0.2);
}

.legal-card i {
  font-size: 3rem;
  color: var(--color-aquamarine);
  margin-bottom: 1.5rem;
}

.legal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-white-sand);
}

.legal-card p {
  color: var(--color-pearl);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-arrow {
  color: var(--color-light-blue);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.legal-card:hover .legal-arrow {
  transform: translateX(10px);
}

.footer {
  background: var(--color-dark);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--color-aquamarine);
}

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

.footer-section h4 {
  color: var(--color-aquamarine);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section p {
  color: var(--color-pearl);
  line-height: 1.8;
}

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

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

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

.footer-section ul li a:hover {
  color: var(--color-aquamarine);
  padding-left: 5px;
}

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

.footer-bottom p {
  color: var(--color-pearl);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.9rem;
  color: var(--color-light-blue);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes anchorSwing {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

@keyframes waveIcon {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-5deg);
  }
  75% {
    transform: translateY(5px) rotate(5deg);
  }
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  33% {
    transform: translateY(-20px) translateX(10px);
  }
  66% {
    transform: translateY(-10px) translateX(-10px);
  }
}

@keyframes waveShift {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

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

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

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 27, 46, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1rem;
  }

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

  .nav-toggle {
    display: block;
  }
}

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

  .age-modal-content {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

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

  .cookie-content {
    text-align: center;
    justify-content: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-accept,
  .btn-learn-more {
    width: 100%;
  }

  section {
    padding: 4rem 0;
  }
}

.legal-page {
  min-height: 100vh;
  padding-top: 100px;
  background: linear-gradient(
    to bottom,
    var(--color-dark),
    var(--color-deep-blue)
  );
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(127, 255, 212, 0.2);
}

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

.legal-header h1 {
  font-size: 2.5rem;
  color: var(--color-aquamarine);
  margin-bottom: 1rem;
}

.legal-date {
  color: var(--color-light-blue);
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--color-aquamarine);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  color: var(--color-light-blue);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--color-pearl);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

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

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

.legal-content strong {
  color: var(--color-aquamarine);
}

.legal-contact {
  background: rgba(127, 255, 212, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--color-aquamarine);
  margin: 2rem 0;
}

.back-home {
  display: inline-block;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--color-aquamarine),
    var(--color-light-blue)
  );
  color: var(--color-deep-blue);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.back-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(127, 255, 212, 0.4);
}

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

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