/* Google Fonts - Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Colores Primarios */
  --purple-neon: #B026FF;
  --blue-electric: #0892D0;
  --pink-bubble: #FF71CE;
  
  /* Colores Secundarios */
  --yellow-neon: #FDFE7A;
  --green-neon: #01FF89;
  --orange-bright: #FF9E4A;
  
  /* Colores de Fondo */
  --black-space: #121212;
  --blue-dark: #0D0221;
  --gray-dark: #1C1C1C;
  
  /* Colores de Acento */
  --turquoise-bright: #05FFA1;
  --red-neon: #FF3864;
  --purple-intense: #7122FA;
  
  /* Fuentes */
  --font-primary: 'Raleway', sans-serif;
  
  /* Tamaños */
  --header-height: 70px;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--black-space);
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.iti {
  width: 100%;
}

/* ===== RETRO GRID BACKGROUND ===== */
.retro-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(0deg, transparent 24%, 
      rgba(176, 38, 255, 0.05) 25%, 
      rgba(176, 38, 255, 0.05) 26%, 
      transparent 27%, transparent 74%, 
      rgba(176, 38, 255, 0.05) 75%, 
      rgba(176, 38, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, 
      rgba(176, 38, 255, 0.05) 25%, 
      rgba(176, 38, 255, 0.05) 26%, 
      transparent 27%, transparent 74%, 
      rgba(176, 38, 255, 0.05) 75%, 
      rgba(176, 38, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  z-index: -1;
}

.horizon {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25vh;
  background: linear-gradient(0deg, var(--purple-neon) 0%, transparent 100%);
  opacity: 0.1;
  z-index: -1;
}

/* ===== NEON TEXT & EFFECTS ===== */
.neon-text {
  text-shadow: 
    0 0 5px rgba(255, 113, 206, 0.8),
    0 0 10px rgba(255, 113, 206, 0.5),
    0 0 15px rgba(255, 113, 206, 0.3);
  color: var(--pink-bubble);
}

.neon-text-blue {
  text-shadow: 
    0 0 5px rgba(8, 146, 208, 0.8),
    0 0 10px rgba(8, 146, 208, 0.5),
    0 0 15px rgba(8, 146, 208, 0.3);
  color: var(--blue-electric);
}

.neon-text-green {
  text-shadow: 
    0 0 5px rgba(1, 255, 137, 0.8),
    0 0 10px rgba(1, 255, 137, 0.5),
    0 0 15px rgba(1, 255, 137, 0.3);
  color: var(--green-neon);
}

.neon-text-yellow {
  text-shadow: 
    0 0 5px rgba(253, 254, 122, 0.8),
    0 0 10px rgba(253, 254, 122, 0.5),
    0 0 15px rgba(253, 254, 122, 0.3);
  color: var(--yellow-neon);
}

.neon-box {
  border: 2px solid var(--pink-bubble);
  box-shadow: 
    0 0 5px var(--pink-bubble),
    inset 0 0 5px var(--pink-bubble);
  border-radius: 8px;
}

.neon-box-blue {
  border: 2px solid var(--blue-electric);
  box-shadow: 
    0 0 5px var(--blue-electric),
    inset 0 0 5px var(--blue-electric);
  border-radius: 8px;
}

.neon-box-green {
  border: 2px solid var(--green-neon);
  box-shadow: 
    0 0 5px var(--green-neon),
    inset 0 0 5px var(--green-neon);
  border-radius: 8px;
}

.neon-box-yellow {
  border: 2px solid var(--yellow-neon);
  box-shadow: 
    0 0 5px var(--yellow-neon),
    inset 0 0 5px var(--yellow-neon);
  border-radius: 8px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--purple-neon);
  box-shadow: 0 0 10px rgba(176, 38, 255, 0.5);
}

.header__container {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--pink-bubble);
  border-radius: 3px;
  box-shadow: 0 0 5px var(--pink-bubble);
  transition: all 0.3s ease;
}

.nav__list {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  padding: 5px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--pink-bubble);
  box-shadow: 0 0 5px var(--pink-bubble);
  transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero__content {
  flex: 1;
  padding: 30px;
  background-color: rgba(18, 18, 18, 0.8);
  border-radius: 10px;
  border-left: 3px solid var(--pink-bubble);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__text {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--green-neon);
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--green-neon);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(1, 255, 137, 0.5);
}

.cta-button:hover {
  background-color: var(--green-neon);
  color: var(--black-space);
  box-shadow: 0 0 15px rgba(1, 255, 137, 0.8);
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  border: 3px solid var(--blue-electric);
  box-shadow: 0 0 20px rgba(8, 146, 208, 0.5);
}

/* ===== SPLIT SCREEN LAYOUT ===== */
.split-screen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height);
}

.split-left,
.split-right {
  flex: 1;
  padding: 50px 20px;
}

.split-left {
  background-color: rgba(13, 2, 33, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
  position: relative;
}

.section__title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--pink-bubble);
  box-shadow: 0 0 10px var(--pink-bubble);
}

.card {
  background-color: rgba(28, 28, 28, 0.8);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border-top: 3px solid var(--purple-neon);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--yellow-neon);
}

.card__text {
  color: #eee;
  margin-bottom: 20px;
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--blue-electric);
  text-shadow: 0 0 10px rgba(8, 146, 208, 0.8);
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

/* ===== FEATURE BLOCKS ===== */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  text-align: center;
}

.feature__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--green-neon);
  text-shadow: 0 0 10px rgba(1, 255, 137, 0.8);
}

.feature__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--yellow-neon);
}

.feature__text {
  color: #eee;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== IMAGE BLOCKS ===== */
.image-block {
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-block img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.image-block:hover img {
  transform: scale(1.05);
}

.image-block__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.9) 0%, rgba(18, 18, 18, 0) 100%);
}

.image-block__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--yellow-neon);
}

.image-block__text {
  color: #fff;
  font-size: 0.9rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background-color: rgba(28, 28, 28, 0.8);
  border-radius: 10px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid var(--blue-electric);
  box-shadow: 0 0 20px rgba(8, 146, 208, 0.3);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--pink-bubble);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(13, 2, 33, 0.5);
  border: 2px solid var(--purple-neon);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-neon);
  box-shadow: 0 0 10px rgba(1, 255, 137, 0.5);
}

.form-button {
  width: 100%;
  padding: 12px;
  background-color: var(--blue-electric);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(8, 146, 208, 0.3);
}

.form-button:hover {
  background-color: var(--purple-neon);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(176, 38, 255, 0.4);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  padding: 20px;
  z-index: 9999;
  border-top: 2px solid var(--blue-electric);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent__text {
  margin-bottom: 20px;
  text-align: center;
}

.cookie-consent__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-button {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button--accept {
  background-color: var(--green-neon);
  color: var(--black-space);
  border: none;
}

.cookie-button--accept:hover {
  background-color: #00dd77;
  box-shadow: 0 0 15px rgba(1, 255, 137, 0.8);
}

.cookie-button--decline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-button--decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-button--settings {
  background-color: transparent;
  color: var(--blue-electric);
  border: 2px solid var(--blue-electric);
}

.cookie-button--settings:hover {
  background-color: rgba(8, 146, 208, 0.1);
  box-shadow: 0 0 10px rgba(8, 146, 208, 0.5);
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-settings__content {
  background-color: var(--gray-dark);
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  border: 2px solid var(--purple-neon);
  box-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
}

.cookie-settings__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings__title {
  font-size: 1.5rem;
  color: var(--pink-bubble);
}

.cookie-settings__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-settings__close:hover {
  color: var(--pink-bubble);
}

.cookie-settings__option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-settings__option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cookie-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-option__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--yellow-neon);
}

.cookie-option__toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.cookie-option__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-option__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #444;
  transition: .4s;
  border-radius: 34px;
}

.cookie-option__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-option__slider {
  background-color: var(--green-neon);
  box-shadow: 0 0 10px rgba(1, 255, 137, 0.8);
}

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

.cookie-option__description {
  color: #ddd;
  font-size: 0.9rem;
}

.cookie-settings__actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.cookie-settings__save {
  padding: 10px 20px;
  background-color: var(--green-neon);
  color: var(--black-space);
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings__save:hover {
  background-color: #00dd77;
  box-shadow: 0 0 15px rgba(1, 255, 137, 0.8);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--blue-dark);
  padding: 50px 0 20px;
  border-top: 1px solid var(--purple-neon);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(0deg, transparent 24%, 
      rgba(176, 38, 255, 0.03) 25%, 
      rgba(176, 38, 255, 0.03) 26%, 
      transparent 27%, transparent 74%, 
      rgba(176, 38, 255, 0.03) 75%, 
      rgba(176, 38, 255, 0.03) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, 
      rgba(176, 38, 255, 0.03) 25%, 
      rgba(176, 38, 255, 0.03) 26%, 
      transparent 27%, transparent 74%, 
      rgba(176, 38, 255, 0.03) 75%, 
      rgba(176, 38, 255, 0.03) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  z-index: 0;
}

.footer__container {
  position: relative;
  z-index: 1;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--pink-bubble);
  position: relative;
  padding-bottom: 10px;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--pink-bubble);
  box-shadow: 0 0 5px var(--pink-bubble);
}

.footer__text {
  color: #bbb;
  margin-bottom: 15px;
}

.footer__link {
  color: #ddd;
  margin-bottom: 10px;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link:hover {
  color: var(--green-neon);
  transform: translateX(5px);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #ddd;
}

.footer__contact-icon {
  color: var(--yellow-neon);
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  color: #999;
  font-size: 0.9rem;
}

/* ===== PAGES SPECIFIC STYLES ===== */
/* Seguridad Pagos Online Page */
.security-features {
  padding: 20px;
  background-color: rgba(13, 2, 33, 0.5);
  border-radius: 10px;
  margin-bottom: 40px;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.security-feature__icon {
  font-size: 2rem;
  color: var(--green-neon);
  margin-right: 20px;
  flex-shrink: 0;
}

.security-feature__content {
  flex: 1;
}

.security-feature__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--yellow-neon);
}

.security-feature__text {
  color: #eee;
}

/* Tips Table */
.tips-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background-color: rgba(28, 28, 28, 0.7);
  border-radius: 10px;
  overflow: hidden;
}

.tips-table thead {
  background-color: var(--purple-neon);
}

.tips-table th {
  padding: 15px;
  text-align: left;
  color: #fff;
  font-weight: 700;
}

.tips-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tips-table tr:last-child td {
  border-bottom: none;
}

.tips-table tr:hover {
  background-color: rgba(176, 38, 255, 0.1);
}

/* Thanks Page */
.thanks-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.thanks-content {
  max-width: 600px;
  padding: 40px;
  background-color: rgba(28, 28, 28, 0.8);
  border-radius: 10px;
  border: 2px solid var(--green-neon);
  box-shadow: 0 0 30px rgba(1, 255, 137, 0.3);
}

.thanks-icon {
  font-size: 5rem;
  color: var(--green-neon);
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(1, 255, 137, 0.8);
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--yellow-neon);
}

.thanks-text {
  color: #eee;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.back-home {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--blue-electric);
  color: #fff;
  border-radius: 5px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(8, 146, 208, 0.3);
}

.back-home:hover {
  background-color: var(--purple-neon);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(176, 38, 255, 0.4);
}

/* ===== MEDIA QUERIES ===== */
@media (min-width: 576px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cookie-consent__container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-consent__text {
    margin-bottom: 0;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2.5rem;
  }
  
  .hero__container {
    flex-direction: row;
  }
  
  .split-screen {
    flex-direction: row;
  }
  
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__content {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: right 0.3s ease;
    border-left: 2px solid var(--purple-neon);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav__link {
    font-size: 24px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section__title {
    font-size: 2rem;
  }
  
  .card {
    padding: 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
}

@media (max-width: 575px) {
  .hero__content,
  .card {
    padding: 20px;
  }
  
  .cookie-consent__buttons {
    margin-top: 15px;
  }
  
  .cookie-button {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  
  .cookie-settings__content {
    padding: 20px;
  }
}

/* ===== POLICY PAGES ===== */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 60px;
}

.policy-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.policy-date {
  text-align: center;
  margin-bottom: 40px;
  color: #bbb;
  font-style: italic;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--pink-bubble);
}

.policy-section__content {
  color: #eee;
  line-height: 1.8;
}

.policy-section__content p {
  margin-bottom: 15px;
}

.policy-section__content ul,
.policy-section__content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-section__content li {
  margin-bottom: 8px;
}

.policy-section__content a {
  color: var(--green-neon);
  text-decoration: underline;
}

.policy-section__content a:hover {
  text-decoration: none;
}