:root {
  --color-bg-dark: #18092b;
  --color-bg-gradient: linear-gradient(135deg, #18092b 0%, #351259 50%, #521682 100%);
  --color-surface: rgba(43, 19, 79, 0.75);
  --color-surface-hover: rgba(69, 31, 122, 0.9);
  --color-border: #ff5294;
  --color-border-active: #00f0ff;
  --color-primary: #ff477e;
  --color-primary-rgb: 255, 71, 126;
  --color-secondary: #c41eff;
  --color-candy-yellow: #ffe633;
  --color-candy-orange: #ff8c21;
  --color-candy-green: #39ff14;
  --color-accent: #00f0ff;
  --color-text-main: #ffffff;
  --color-text-muted: #f0dbff;
  --font-family-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max-width: 1320px;
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Extra bouncy cartoon transitions */
  --cartoon-shadow: 0 10px 0px #090312, 0 20px 30px rgba(0,0,0,0.5);
  --cartoon-shadow-hover: 0 14px 0px #090312, 0 25px 35px rgba(0,0,0,0.6);
  --cartoon-border: 4px solid #090312;
}

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

body {
  background: var(--color-bg-dark);
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 71, 126, 0.15) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.15) 0%, transparent 40%),
                    var(--color-bg-gradient);
  background-attachment: fixed;
  color: var(--color-text-main);
  font-family: var(--font-family-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Cartoon Candy Sprinkle Backgrounds */
.candy-sprinkles-overlay {
  background-image: radial-gradient(circle, var(--color-primary) 2px, transparent 3px),
                    radial-gradient(circle, var(--color-accent) 2px, transparent 3px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  opacity: 0.15;
}

/* Typography with fun outline strokes & shadows */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  color: #fff;
  text-shadow: 
    3px 3px 0px #090312,
    -3px -3px 0px #090312,
    3px -3px 0px #090312,
    -3px 3px 0px #090312,
    6px 6px 0px var(--color-primary),
    10px 10px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--color-candy-yellow);
  text-shadow: 
    2px 2px 0px #090312,
    -2px -2px 0px #090312,
    2px -2px 0px #090312,
    -2px 2px 0px #090312,
    4px 4px 0px var(--color-secondary),
    8px 8px 15px rgba(0,0,0,0.4);
  margin-bottom: 1.25rem;
  text-align: center;
  word-wrap: break-word;
}

/* Disclaimer Bar - Candy Striped style */
.disclaimer-bar {
  background: repeating-linear-gradient(
    45deg,
    #090312,
    #090312 15px,
    #1b0629 15px,
    #1b0629 30px
  );
  border-bottom: 4px solid var(--color-primary);
  color: #fff;
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.85rem 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  text-shadow: 1px 1px 0px var(--color-primary);
}

/* Header styled with bubbly candy goodness */
.slim-header {
  background: rgba(24, 9, 43, 0.95);
  border: var(--cartoon-border);
  border-top: none;
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 48px;
  z-index: 999;
  padding: 0.85rem 0;
  margin: 0 clamp(0.5rem, 2vw, 1.5rem);
  box-shadow: var(--cartoon-shadow);
  transition: var(--transition-smooth);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-family-title);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--color-candy-yellow);
  text-shadow: 2px 2px 0px #090312;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.logo-link:hover {
  transform: scale(1.05) rotate(-1deg);
}

.logo-dot {
  width: 14px;
  height: 14px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid #090312;
  box-shadow: 0 0 10px var(--color-primary);
  animation: pulse-glow 1.5s infinite;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  list-style: none;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--color-primary);
  background: rgba(255, 71, 126, 0.1);
  border: 2px dashed var(--color-primary);
}

.header-cta {
  background: linear-gradient(135deg, var(--color-candy-orange) 0%, var(--color-primary) 100%);
  color: #fff;
  border: 3px solid #090312;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 0px #090312;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 0px #090312;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 12px;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.burger-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--color-text-main);
  margin: 4px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Main Container Styles */
.main-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
}

/* Hero Section */
.hero-section {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 71, 126, 0.15);
  border: 3px dashed var(--color-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: var(--color-primary);
  font-weight: 900;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: candy-jiggle 3s infinite ease-in-out;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 620px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Playful cartoon buttons with heavy offsets */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #fff;
  border: var(--cartoon-border);
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2.8rem);
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--cartoon-shadow);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #090312;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: var(--cartoon-shadow-hover);
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.btn-secondary {
  background: var(--color-surface);
  border: var(--cartoon-border);
  color: var(--color-candy-yellow);
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.5rem, 3vw, 2.8rem);
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.25rem);
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--cartoon-shadow);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  text-shadow: 2px 2px 0px #090312;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: var(--cartoon-shadow-hover);
  color: #fff;
}

/* Glass Console Frame (Playful border style) */
.glass-console {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 32px;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  box-shadow: var(--cartoon-shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glass-console:hover {
  transform: scale(1.01);
  border-color: var(--color-accent);
}

.game-placeholder-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 20px;
  border: 3px solid #090312;
  display: block;
}

/* Featured Game Section */
.featured-experience-sec {
  padding: clamp(3rem, 8vw, 7rem) 0;
  background: radial-gradient(circle at 50% 50%, rgba(196, 30, 255, 0.15) 0%, transparent 70%);
}

.iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--cartoon-shadow);
  border: var(--cartoon-border);
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto clamp(2rem, 5vw, 4.5rem) auto;
}

.section-intro p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.feature-card {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--cartoon-shadow);
}

.feature-card:hover {
  transform: translateY(-6px) rotate(0.5deg);
  border-color: var(--color-accent);
  background: var(--color-surface-hover);
  box-shadow: var(--cartoon-shadow-hover);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  border: 3px solid #090312;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--color-primary);
  box-shadow: 3px 3px 0px #090312;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
  color: var(--color-candy-yellow);
  text-shadow: 2px 2px 0px #090312;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 600;
}

/* Info Section (Split Visual + Text) */
.info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.info-content h2 {
  text-align: left;
}

.info-text-block {
  margin-top: 1.5rem;
}

.info-text-block p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 1.5rem;
}

.info-bullets {
  list-style: none;
  margin-top: 2rem;
}

.info-bullets li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.info-bullets li::before {
  content: '🍭';
  position: absolute;
  left: 0;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  top: -2px;
}

/* Statistics Block - Bubbly pill shapes */
.stats-bar {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  margin: clamp(3rem, 7vw, 5rem) 0;
  box-shadow: var(--cartoon-shadow);
}

.stat-item {
  position: relative;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-accent);
  text-shadow: 3px 3px 0px #090312;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--color-candy-yellow);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 1.5px 1.5px 0px #090312;
}

/* FAQ Section */
.faq-sec {
  padding: clamp(3rem, 8vw, 7rem) 0;
}

.faq-grid {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 6px 0px #090312;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-shadow: 1.5px 1.5px 0px #090312;
  gap: 1rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border: 2px solid #090312;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 1.8rem);
  color: var(--color-text-muted);
  font-size: 1.01rem;
  font-weight: 600;
  display: none;
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 8px 0px #090312;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: #090312;
}

/* Form Styling - Cartoonized inputs */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.contact-card {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 32px;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: var(--cartoon-shadow);
}

.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.15);
  border: 3px solid #090312;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 3px 3px 0px #090312;
}

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

.form-group label {
  display: block;
  font-family: var(--font-family-title);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-candy-yellow);
  margin-bottom: 0.6rem;
  text-shadow: 1px 1px 0px #090312;
}

.form-input {
  width: 100%;
  background: rgba(9, 3, 18, 0.85);
  border: 3px solid #090312;
  border-radius: 16px;
  padding: 1rem;
  color: var(--color-text-main);
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

textarea.form-input {
  resize: vertical;
  min-height: 150px;
}

/* Newsletter Section with crazy candy stripe styling */
.newsletter-box {
  background: repeating-linear-gradient(
    -45deg,
    rgba(43, 19, 79, 0.9),
    rgba(43, 19, 79, 0.9) 20px,
    rgba(59, 23, 112, 0.9) 20px,
    rgba(59, 23, 112, 0.9) 40px
  );
  border: var(--cartoon-border);
  border-radius: 36px;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
  max-width: 950px;
  margin: clamp(4rem, 10vw, 7rem) auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--cartoon-shadow);
}

.newsletter-box h2 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 650px;
  margin: 2.5rem auto 0 auto;
}

.newsletter-form input {
  flex: 1;
}

/* Blog styling */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.blog-card {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--cartoon-shadow);
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--color-accent);
  box-shadow: var(--cartoon-shadow-hover);
}

.blog-image-placeholder {
  height: 220px;
  background: radial-gradient(circle at 50% 50%, #3e126b 0%, #150529 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 3px solid #090312;
  overflow: hidden;
}

.blog-image-placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  align-self: flex-start;
  background: var(--color-primary);
  color: #fff;
  border: 2px solid #090312;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  box-shadow: 2px 2px 0px #090312;
  text-transform: uppercase;
}

.blog-title {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin-bottom: 0.85rem;
  color: var(--color-candy-yellow);
  text-shadow: 1.5px 1.5px 0px #090312;
  text-decoration: none;
  font-weight: 900;
  transition: var(--transition-smooth);
}

.blog-title:hover {
  color: var(--color-accent);
}

.blog-excerpt {
  color: var(--color-text-muted);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.blog-meta {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-accent);
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
}

/* Footer styling with playful stripes on top */
.premium-footer {
  background: #090312;
  border-top: 6px solid var(--color-primary);
  padding: clamp(3rem, 8vw, 6rem) 0 3rem 0;
  margin-top: clamp(4rem, 10vw, 7rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 1.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  max-width: 320px;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-candy-yellow);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 1.5px 1.5px 0px #090312;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.footer-contact-info {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-contact-info p {
  margin-bottom: 0.85rem;
}

.footer-bottom {
  border-top: 3px dashed rgba(255, 255, 255, 0.15);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-disclaimer {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 900;
  border: 3px solid #090312;
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--color-primary);
  box-shadow: 0 4px 0px #090312;
}

.footer-meta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 1.5rem;
}

.footer-meta-flex p {
  max-width: 65%;
}

/* Legal text blocks with playful inner borders */
.legal-content-wrapper {
  background: var(--color-surface);
  border: var(--cartoon-border);
  border-radius: 36px;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(4rem, 10vw, 7rem);
  box-shadow: var(--cartoon-shadow);
}

.legal-content-wrapper h2 {
  text-align: left;
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--color-primary);
}

.legal-content-wrapper p {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.legal-content-wrapper ul {
  list-style: none;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.legal-content-wrapper ul li {
  position: relative;
  margin-bottom: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.legal-content-wrapper ul li::before {
  content: '🍭';
  position: absolute;
  left: -2rem;
  top: -2px;
}

/* Cookie Consent Banner - Polished & Optimized Layout Integration */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(200px);
  width: calc(100% - 3rem);
  max-width: 880px;
  background: rgba(24, 9, 43, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--cartoon-border);
  box-shadow: var(--cartoon-shadow-hover);
  border-radius: 24px;
  padding: 1.5rem 2rem;
  z-index: 999999;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-content {
  flex: 1;
}

.cookie-content h4 {
  color: var(--color-candy-yellow);
  font-size: 1.3rem;
  text-shadow: 2px 2px 0px #090312;
  margin-bottom: 0.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-content p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.8rem 1.6rem;
  border-radius: 16px;
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.2);
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-accent) 0%, #00d4ff 100%);
  border: 3px solid #090312;
  color: #090312;
  box-shadow: 3px 3px 0px #090312;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px #090312;
  background: linear-gradient(135deg, #00d4ff 0%, var(--color-accent) 100%);
}

.cookie-reject {
  background: rgba(9, 3, 18, 0.65);
  border: 3px solid #090312;
  color: var(--color-text-muted);
  box-shadow: 3px 3px 0px #090312;
}

.cookie-reject:hover {
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 5px 5px 0px #090312;
}

/* Bouncy Animations */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 15px rgba(255, 71, 126, 0.5); }
  50% { transform: scale(1.15); opacity: 0.9; box-shadow: 0 0 25px rgba(255, 71, 126, 0.9); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 15px rgba(255, 71, 126, 0.5); }
}

@keyframes candy-jiggle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-2deg) scale(1.02); }
  75% { transform: rotate(2deg) scale(0.98); }
}

@keyframes float-more {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.floating-candy-elem {
  animation: float-more 5s ease-in-out infinite;
}

/* Responsive Rules */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-badge {
    justify-content: center;
  }
  .hero-description {
    margin: 0 auto 2.5rem auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .info-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .info-content h2 {
    text-align: center;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .slim-header {
    top: 41px;
    margin: 0 0.5rem;
    border-radius: 0 0 16px 16px;
    position: sticky;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #1c0835;
    border: var(--cartoon-border);
    border-radius: 20px;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: var(--cartoon-shadow-hover);
    margin: 0;
    z-index: 9999;
  }
  .nav-menu.open {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .header-cta {
    display: none;
  }
  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-meta-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .footer-meta-flex p {
    max-width: 100%;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-box {
    padding: 2.5rem 1.25rem;
  }
  .legal-content-wrapper {
    padding: 2.5rem 1.25rem;
  }
  
  /* Responsive Cookie Consent Banner */
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
    bottom: 1rem;
    width: calc(100% - 1.5rem);
  }
  .cookie-content h4 {
    justify-content: center;
    text-align: center;
  }
  .cookie-content p {
    text-align: center;
    font-size: 0.9rem;
  }
  .cookie-actions {
    justify-content: center;
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  body {
    background-image: radial-gradient(circle at 50% 15%, rgba(255, 71, 126, 0.12) 0%, transparent 50%),
                      var(--color-bg-gradient);
  }
  .disclaimer-bar {
    padding: 0.65rem 0.5rem;
    font-size: 0.62rem;
    line-height: 1.4;
  }
  .slim-header {
    top: 51px;
    border-width: 3px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form button {
    width: 100%;
  }
}