@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-dark: #090b0f;
  --bg-card: rgba(22, 25, 32, 0.7);
  --bg-card-hover: rgba(30, 35, 45, 0.85);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 242, 254, 0.3);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent-cyan: #00f2fe;
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --max-width-narrow: 46rem;
  --max-width-wide: 64rem;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(at 0% 0%, rgba(139, 92, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 242, 254, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 242, 254, 0.5);
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 11, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.site-header__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-brand {
  display: inline-block;
  line-height: 0;
}

.site-brand img {
  display: block;
  height: 38px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .site-nav {
    gap: 1.25rem;
  }
}

/* Hero Section */
.hero-wrapper {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--accent-cyan);
  margin: 0 0 1.25rem;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0 0 2.25rem;
  max-width: 32rem;
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 3rem 1.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-description {
    margin: 0 auto 2rem;
  }
}

/* Visual Game Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.game-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.glowing-backdrop {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  border-radius: 1.75rem;
  filter: blur(25px);
  opacity: 0.15;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.game-card-wrapper:hover .glowing-backdrop {
  opacity: 0.35;
}

.game-card {
  position: relative;
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-primary);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.game-card__image-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.game-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover .game-card__image {
  transform: scale(1.05);
}

.game-card__content {
  padding: 1.75rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(90deg, rgba(0, 242, 254, 0.15), rgba(59, 130, 246, 0.15));
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--accent-cyan);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.release-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.game-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.game-card p {
  margin: 0 0 1.25rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.game-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.game-card:hover .game-card__link {
  gap: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  color: #090b0f !important;
  text-decoration: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-shadow: none !important;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.55);
  filter: brightness(1.1);
}

.btn:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary) !important;
  border: 1px solid var(--border-color);
  box-shadow: none;
  margin-left: 1rem;
}

.btn--secondary:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.1);
  background: rgba(0, 242, 254, 0.03);
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }
  .btn--secondary {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}

/* Grid & Features Section */
.features-section {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

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

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 0.75rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 34rem;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2.25rem;
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(0, 242, 254, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Phone Mockup Frame */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
}

.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  border: 12px solid #1f232e;
  border-radius: 2.75rem;
  box-shadow: 
    0 0 0 3px #0d0f14,
    0 25px 50px rgba(0, 0, 0, 0.75),
    0 0 25px rgba(0, 242, 254, 0.15);
  background: #000;
  overflow: hidden;
  z-index: 10;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #1f232e;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 20;
}

.phone-mockup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  background: #000;
  display: block;
}

/* Download Badges */
.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin: 2.5rem 0 0;
}

.download-badge {
  height: 48px;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.2s ease;
}

.download-badge:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.15);
}

.download-badge svg,
.download-badge img {
  height: 100%;
  width: auto;
  display: block;
}

/* Horizontal Screenshot Gallery */
.product-gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem;
  margin: 2rem 0 3.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 242, 254, 0.2) transparent;
  list-style: none;
}

.product-gallery::-webkit-scrollbar {
  height: 6px;
}

.product-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.product-gallery::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

.product-gallery:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0, 242, 254, 0.3);
}

.product-gallery li {
  flex: 0 0 190px;
  scroll-snap-align: start;
  margin: 0;
}

.product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-card);
}

.product-gallery img:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 35px rgba(0, 242, 254, 0.25);
}

/* Product features grid */
.features-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
  margin: 3rem 0;
}

.feature-list-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.feature-list-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.feature-list-card h3 {
  font-family: var(--font-heading);
  color: var(--accent-cyan);
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-list-card p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Legal Container and styling */
.legal-container {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .legal-card {
    padding: 2.25rem 1.5rem;
  }
}

.legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #fff 40%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.legal-toc {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 0.85rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.legal-toc strong {
  color: var(--text-primary);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  margin: 0.5rem 0;
}

.legal-toc a {
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 0.975rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.legal-toc a:hover {
  color: #fff;
}

.legal h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--accent-cyan);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-top: 3.5rem;
  font-weight: 700;
}

.legal h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-top: 2rem;
  font-weight: 600;
}

.legal p, .legal li {
  color: var(--text-secondary);
  font-size: 0.975rem;
  line-height: 1.6;
}

.legal ul, .legal ol {
  padding-left: 1.5rem;
}

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

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.925rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 0.75rem;
  overflow: hidden;
}

.data-table th, .data-table td {
  border: 1px solid var(--border-color);
  padding: 1rem 1.15rem;
  text-align: left;
}

.data-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

.data-table td {
  color: var(--text-secondary);
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 2rem;
  transition: gap 0.2s ease;
}

.legal-back-link:hover {
  gap: 0.75rem;
}

.product-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}

.product-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
}

.product-intro p {
  margin-left: auto;
  margin-right: auto;
}

/* Page Titles for subpages */
main h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-bottom: 2rem;
}

main > h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

main > h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
  border-radius: 2px;
}

/* Footer styling */
.site-footer {
  background: rgba(9, 11, 15, 0.95);
  border-top: 1px solid var(--border-color);
  margin-top: auto;
  padding: 3.5rem 0;
}

.site-footer__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.site-footer nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-footer nav a:hover {
  color: var(--accent-cyan);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--accent-cyan);
  text-decoration: none;
}

/* Contact form */
.contact-form {
  margin-top: 2rem;
}

/* Bot trap: hidden from sight, still in the DOM for simple scrapers */
.contact-form__honeypot,
.contact-form__honeypot-label,
.contact-form__honeypot input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form__field {
  margin-bottom: 1.25rem;
}

.contact-form__field label {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: var(--text-muted);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(0, 242, 254, 0.12);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__hint,
.contact-form__fallback {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-form__status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.925rem;
  line-height: 1.5;
}

.contact-form__status--success {
  border-color: rgba(0, 242, 254, 0.25);
  background: rgba(0, 242, 254, 0.08);
}

.contact-form__status--error {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.1);
}

.contact-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
}

.contact-form__fallback {
  margin-top: 2rem;
  text-align: center;
}

/* Cookie consent banner (Consent Mode v2) */
body.cookie-consent-open {
  padding-bottom: 7rem;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem 1.25rem;
  background: rgba(9, 11, 15, 0.96);
  border-top: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.cookie-consent__inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.cookie-consent__text {
  margin: 0;
  flex: 1 1 16rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-consent__text a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-consent__btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cookie-consent__btn--primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: #0b0f14;
  border-color: transparent;
}

.cookie-consent__btn--primary:hover {
  color: #0b0f14;
  text-shadow: none;
  filter: brightness(1.08);
}

.cookie-consent__btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.cookie-consent__btn--secondary:hover {
  border-color: var(--border-hover);
  color: #fff;
  text-shadow: none;
}

@media (max-width: 40rem) {
  body.cookie-consent-open {
    padding-bottom: 10rem;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1 1 auto;
  }
}
