:root {
  /* Witchcraft Color Palette - Darker, more magical */
  --color-bg-dark: #090a0f;
  --color-bg-panel: #13141f;
  --color-accent-primary: #b39dcd; /* Light purple */
  --color-accent-secondary: #220b3e; /* Dark purple */
  --color-accent-glow: #d8cbeb;
  
  --color-parchment: #d4c5b0;
  --color-parchment-dark: #b5a287;
  --color-text-dark: #2a1c1a;
  --color-text-light: #e6dfd3;
  --color-border-dark: #1f1412;
  --color-border-light: rgba(255, 255, 255, 0.15);
  
  /* Fonts */
  --font-title: 'Bershike', 'Berkshire Swash', 'Germania One', cursive;
  --font-heading: 'Germania One', system-ui, sans-serif;
  --font-body: 'Grenze', serif;
  
  --site-width: 1000px;
  --site-padding: 2rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  background-image: radial-gradient(circle at center 0%, #1a162b 0%, var(--color-bg-dark) 80%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Base utility for reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.container {
  width: min(100% - (var(--site-padding) * 2), var(--site-width));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: normal;
  letter-spacing: 0.05em;
}

.main-title {
  font-family: var(--font-title);
  font-size: clamp(4rem, 10vw, 7rem);
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.8), 0 0 25px var(--color-accent-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: floatTitle 6s ease-in-out infinite;
  will-change: transform; /* Hardware acceleration */
}

@keyframes floatTitle {
  0%, 100% { 
    transform: translate3d(0, 0, 0); 
  }
  50% { 
    transform: translate3d(0, -12px, 0); 
  }
}

/* HEADER */
.witchcraft-header {
  padding: 1rem 0;
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.brand-link {
  text-decoration:none;
  display: block;
  transition: transform 0.3s ease;
}
/* BRANDING */
.header-logo-text {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(122, 67, 182, 0.8);
  letter-spacing: 0.05em;
  transition: text-shadow 0.3s ease;
}

.brand-link:hover .header-logo-text {
  text-shadow: 0 0 15px var(--color-accent-glow);
}

.header-nav a {
  color: var(--color-text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-accent-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header-nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--color-accent-glow);
}
.header-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 5rem 0 7rem;
  text-align: center;
}

/* Magic particles behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(122, 67, 182, 0.15) 0%, transparent 20%),
                    radial-gradient(circle at 80% 60%, rgba(69, 35, 107, 0.15) 0%, transparent 20%);
  z-index: 0;
  pointer-events: none;
  animation: breatheBackground 8s infinite alternate ease-in-out;
}

@keyframes breatheBackground {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-image-container {
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
  animation: floatMockup 8s ease-in-out infinite;
}

@keyframes floatMockup {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8)); }
  50% { transform: translateY(-15px); filter: drop-shadow(0 25px 40px rgba(0,0,0,0.9)) drop-shadow(0 0 30px rgba(122, 67, 182, 0.4)); }
}

.mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mockup-wrapper:hover {
  transform: scale(1.02);
}

.mockup-frame {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 4;
  pointer-events: none;
}

.award-seal {
  position: absolute;
  z-index: 5;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}

.award-seal:hover {
  transform: scale(1.1) rotate(-5deg);
}

.dice-tower-seal {
  width: 16%;
  top: -8%;
  right: -2%;
  animation: floatSeal 6s ease-in-out infinite;
}

.golden-geek-seal {
  width: 13%;
  top: -6%;
  right: 13.5%;
  animation: floatSeal 5s ease-in-out infinite reverse;
}

@keyframes floatSeal {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 8px 12px rgba(0,0,0,0.8)); }
}

.inside-mockup {
  position: absolute;
  top: 9%;
  left: 4%;
  width: 93.5%;
  height: 79%;
  object-fit: cover;
  border-radius: 2.5rem;
  transition: transform 0.5s ease;
}

.hero-image.inside-mockup {
  z-index: 2;
}

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

.hero-announcement {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: normal;
  letter-spacing: 0.05em;
  color: var(--color-parchment);
  text-shadow: 0 4px 8px rgba(0,0,0,0.9);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin: 0 auto 2.5rem;
  font-style: normal;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  max-width: 600px;
}

/* STORE BUTTONS */
.store-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-dark);
  padding: 0.95rem 1.6rem;
  border-radius: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 24px rgba(216, 203, 235, 0.12);
  min-width: 240px;
  animation: pulseButton 4s infinite alternate;
}

.apple-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 230, 235, 0.95));
}

.google-btn {
  background: linear-gradient(135deg, rgba(244, 250, 244, 0.98), rgba(220, 239, 226, 0.95));
}

@keyframes pulseButton {
  0% { box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 0 rgba(179, 157, 205, 0); }
  100% { box-shadow: 0 14px 30px rgba(0,0,0,0.45), 0 0 26px rgba(179, 157, 205, 0.35); }
}

.store-btn i {
  font-size: 2.5rem;
}

.apple-btn i { color: #111; }

.google-btn i { color: #188038; }

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.store-btn-text span {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(42, 28, 26, 0.72);
}

.store-btn-text strong {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.store-btn:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--color-accent-glow);
  box-shadow: 0 18px 36px rgba(0,0,0,0.42), 0 0 28px rgba(179, 157, 205, 0.45);
  filter: brightness(1.03);
}

.store-btn:focus-visible {
  outline: 3px solid var(--color-accent-glow);
  outline-offset: 4px;
}

.apple-btn:hover i { color: #000; }
.google-btn:hover i { color: #0f9d58; }

/* LORE TEXT */
.lore-text-wrapper {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: left;
  padding: 2.5rem;
  background: rgba(19, 20, 31, 0.6);
  border-left: 4px solid var(--color-accent-primary);
  border-radius: 0 1rem 1rem 0;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.5);
}

.lore-text {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.lore-text:last-child {
  margin-bottom: 0;
}

.drop-cap {
  float: left;
  font-family: var(--font-title);
  font-size: 5.5rem;
  line-height: 0.8;
  padding-top: 0.2rem;
  padding-right: 0.8rem;
  color: var(--color-accent-primary);
  text-shadow: 0 0 10px rgba(122, 67, 182, 0.4);
  animation: glowCap 3s infinite alternate ease-in-out;
}

@keyframes glowCap {
  0% { text-shadow: 0 0 10px rgba(122, 67, 182, 0.4); color: var(--color-accent-primary); }
  100% { text-shadow: 0 0 20px rgba(176, 122, 240, 0.8); color: var(--color-accent-glow); }
}

.mt-5 {
  margin-top: 5rem;
}

/* STORY SECTION (PARCHMENT) */
.story-section {
  padding: 6rem 0;
  position: relative;
  text-align: center;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  display: inline-block;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 15px var(--color-accent-primary);
  position: relative;
  margin-bottom: 0.5rem;
}

.section-title::before, .section-title::after {
  content: '✦';
  position: absolute;
  top: 50%;
  font-size: 1.5rem;
  color: var(--color-accent-primary);
  animation: spinSparkle 4s linear infinite;
}
.section-title::before { 
  left: -2.5rem; 
  transform-origin: center;
  margin-top: -12px; /* Fix vertical centering due to animation */
}
.section-title::after { 
  right: -2.5rem; 
  transform-origin: center;
  margin-top: -12px;
  animation-direction: reverse;
}

@keyframes spinSparkle {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); color: var(--color-accent-glow); }
  100% { transform: rotate(360deg) scale(1); }
}

.section-subtitle {
  font-size: 1.4rem;
  color: var(--color-text-light);
  font-style: italic;
  opacity: 0.9;
  display: block;
}

.parchment-container {
  background-image: url("../images/parchment.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  position: relative;
  transition: transform 0.3s ease;
}

.parchment-container:hover {
  transform: scale(1.01);
}

.parchment-content {
  color: var(--color-text-dark);
  text-align: center;
  position: relative;
  z-index: 1;
}

.story-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--color-border-dark);
  border-bottom: 2px solid rgba(42, 28, 26, 0.3);
  padding-bottom: 1rem;
  display: inline-block;
  font-weight: bold;
}

.story-image-wrapper {
  margin: 2rem auto 2.5rem;
  border: 6px solid var(--color-border-dark);
  padding: 0.5rem;
  background: var(--color-parchment-dark);
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.story-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 2;
}

.story-illustration {
  width: 100%;
  display: block;
  transform-origin: center center;
  animation: slowZoom 20s infinite alternate ease-in-out;
  
  /* Paint reveal setup */
  -webkit-mask-image: linear-gradient(135deg, rgba(0,0,0,1) 40%, rgba(0,0,0,0.8) 45%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 60%);
  mask-image: linear-gradient(135deg, rgba(0,0,0,1) 40%, rgba(0,0,0,0.8) 45%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 60%);
  -webkit-mask-size: 300% 300%;
  mask-size: 300% 300%;
  
  /* Visible state */
  -webkit-mask-position: 0% 0%;
  mask-position: 0% 0%;
  opacity: 1;
  filter: sepia(0.4) contrast(1.3) brightness(0.9) blur(0px);
  
  transition: filter 3s ease 0.5s, 
              -webkit-mask-position 3.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s,
              mask-position 3.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s,
              opacity 2s ease 0.3s,
              transform 0.8s ease;
}

.story-image-wrapper:not(.visible) .story-illustration {
  -webkit-mask-position: 100% 100%;
  mask-position: 100% 100%;
  opacity: 0;
  filter: sepia(1) contrast(2) brightness(0.5) blur(10px);
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.story-image-wrapper:hover .story-illustration {
  filter: sepia(0.2) contrast(1.1) brightness(1) blur(0px);
  transform: scale(1.1);
  animation-play-state: paused;
  transition: filter 0.8s ease, transform 0.8s ease;
}

.story-text {
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  text-shadow: 0px 1px 1px rgba(255,255,255,0.2);
}

.lore-text-wrapper-parchment {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.story-lore-text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.story-lore-text:last-child {
  margin-bottom: 0;
}

.drop-cap-parchment {
  float: left;
  font-family: var(--font-title);
  font-size: 5.5rem;
  line-height: 0.8;
  padding-top: 0.2rem;
  padding-right: 0.8rem;
  color: var(--color-border-dark);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.mt-4 {
  margin-top: 2rem;
}

/* FEATURES SECTION */
.features-section {
  padding: 6rem 0 10rem;
  background: linear-gradient(to bottom, transparent, rgba(69, 35, 107, 0.1));
}

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

.feature-card {
  background-image: linear-gradient(rgb(240 235 225 / 24%), rgb(240 235 225 / 49%)), url(../images/box-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-blend-mode: normal;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-accent-secondary);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: translateY(-8px) scale(1.1);
  opacity: 0.6;
}

.feature-card h3 {
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1.3rem;
  color: #3d2b29; /* Darker tone for readability on the box background */
  font-weight: 500;
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 6rem 0 8rem;
  background-color: #f5f0e6;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  border-top: 6px solid var(--color-border-dark);
  border-bottom: 6px solid var(--color-border-dark);
  position: relative;
}

.reviews-section .section-title {
  color: var(--color-border-dark);
  text-shadow: none;
}

.reviews-section .section-title::before, .reviews-section .section-title::after {
  color: var(--color-border-dark);
}

.reviews-section .section-subtitle {
  color: var(--color-text-dark);
  font-weight: 500;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.review-image-wrapper {
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.review-image-wrapper:hover {
  transform: scale(1.02) rotate(-1deg);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.review-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* LEGAL PAGES */
.legal-page {
  background-image: none;
  background-color: var(--color-bg-dark);
}

.legal-main {
  padding: 4rem 0 8rem;
}

.legal-content {
  text-align: left;
}

.legal-title {
  color: var(--color-text-dark);
  text-shadow: none;
  font-size: 3.5rem;
  text-align: center;
  border-bottom: 2px solid var(--color-border-dark);
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  animation: none;
}

.last-updated {
  text-align: center;
  font-style: italic;
  margin-bottom: 3rem;
  color: rgba(42, 28, 26, 0.7);
}

.legal-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-border-dark);
  font-weight: bold;
}

.legal-content p, .legal-content ul {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 2.5rem;
}

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

.legal-content a {
  color: var(--color-accent-primary);
  font-weight: bold;
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-accent-secondary);
}

/* FOOTER */
.witchcraft-footer {
  background: #06070a;
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.footer-partners {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-partners a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.footer-partners a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
}

.partner-logo {
  max-width: 120px;
  height: auto;
  /* Invertimos colores: el texto negro se vuelve blanco para que se lea en el fondo oscuro */
  filter: grayscale(100%) invert(1) brightness(0.9);
  transition: all 0.3s ease;
  opacity: 0.8;
}

.mantita-logo {
  max-width: 100px;
}

.sp-logo {
  max-width: 140px;
}

.footer-partners a:hover .partner-logo {
  /* Al hacer hover, mostramos color original y quitamos invert, ya que el fondo ahora es blanco */
  filter: grayscale(0%) invert(0) brightness(1);
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #999;
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.cookie-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 300;
  width: min(100% - 2rem, 32rem);
  padding: 1.25rem;
  background: rgba(19, 20, 31, 0.96);
  border: 1px solid var(--color-border-light);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.cookie-banner__content {
  display: grid;
  gap: 0.55rem;
}

.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.cookie-banner__text {
  color: rgba(230, 223, 211, 0.86);
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--color-accent-glow);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-banner__button {
  flex: 1;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--color-border-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-2px);
}

.cookie-banner__button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent-primary), #9362d0);
  box-shadow: 0 8px 20px rgba(122, 67, 182, 0.35);
}

.cookie-banner__button-primary:hover,
.cookie-banner__button-primary:focus-visible {
  box-shadow: 0 12px 24px rgba(122, 67, 182, 0.45);
}

.cookie-banner__button-secondary {
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner__button-secondary:hover,
.cookie-banner__button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-title {
    font-size: 4rem;
  }
  
  .hero-image-container {
    border-width: 2px;
  }
  
  .parchment-container {
    padding: 2.75rem 1.5rem;
  }
  
  .story-title {
    font-size: 1.8rem;
  }
  
  .story-text {
    font-size: 1.3rem;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .store-btn {
    width: 220px;
    justify-content: center;
  }

  .footer-links,
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner {
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .section-title::before { left: -2rem; }
  .section-title::after { right: -2rem; }
}
