@font-face {
    font-family: 'Fredoka';
    src: url('/arcade_assets/bold_type/fredoka.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('/arcade_assets/bold_type/quicksand.woff2') format('woff2');
    font-weight: 300 700;
    font-display: swap;
    font-style: normal;
}

:root {
    --primary: hsl(30, 90%, 55%);
    --secondary: hsl(190, 80%, 45%);
    --accent: hsl(50, 95%, 60%);
    --background: hsl(40, 30%, 98%);
    --text: hsl(0, 0%, 15%);
    --max-width: 76rem;
    --padding-desktop: 2rem;
    --padding-mobile: 1rem;
    --padding-small: 0.3rem;
}

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

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

body {
    font-family: 'Quicksand', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    font-weight: 600;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font: inherit;
    border: none;
    background: none;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.marquee_wrap {
  position: relative;
  background-color: var(--background);
  border-bottom: 4px solid var(--accent);
  box-shadow: 0 8px 0 var(--primary);
}

.marquee_wrap__notice--floating {
  background-color: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  border-bottom: 3px solid var(--primary);
}

.notice_content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.notice_icon {
  font-size: 1.2rem;
  color: var(--accent);
}

.notice_text strong {
  font-family: 'Fredoka', sans-serif;
  margin-right: 0.3rem;
}

.marquee_wrap__panel--split {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--padding-desktop);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.panel_left .brand_home {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s;
}

.panel_left .brand_home:hover {
  transform: scale(1.02);
}

.brand_icon {
  font-size: 2.2rem;
  color: var(--secondary);
}

.panel_right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav_cluster {
  display: flex;
  gap: 1.5rem;
}

.nav_item {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

.nav_item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav_item:hover::after {
  width: 100%;
}

.menu_toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 0.5rem;
}

.marquee_wrap__mobile--drawer {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  padding: 2rem;
  box-shadow: 0 -4px 0 var(--primary);
  transform: translateY(0);
  transition: transform 0.3s;
  z-index: 90;
}

.marquee_wrap__mobile--drawer.open {
  transform: translateY(-100%);
}

.drawer_links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.drawer_item {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 720px) {
  .nav_cluster {
    display: none;
  }
  
  .menu_toggle {
    display: block;
  }
  
  .marquee_wrap__mobile--drawer {
    display: block;
  }
  
  .notice_content {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .marquee_wrap__panel--split {
    padding: 0.8rem var(--padding-mobile);
  }
  
  .panel_left .brand_home {
    font-size: 1.4rem;
  }
  
  .brand_icon {
    font-size: 1.8rem;
  }
  
  .notice_content {
    flex-wrap: wrap;
  }
}

.age_gate--floating-tile {
  position: fixed;
  top: 120px;
  right: 30px;
  max-width: 340px;
  background-color: white;
  border: 4px solid var(--secondary);
  border-radius: 40px 40px 0 40px;
  box-shadow: 12px 12px 0 var(--primary);
  padding: 1.8rem;
  z-index: 1000;
  transition: opacity 0.3s, visibility 0.3s;
}

.age_gate--floating-tile[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate_content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gate_header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 3px dotted var(--accent);
  padding-bottom: 0.8rem;
}

.gate_icon--main {
  font-size: 2.2rem;
  color: var(--secondary);
}

.gate_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.gate_text {
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 0.5rem;
}

.gate_actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.action_confirm--age {
  flex: 2;
  background-color: var(--primary);
  color: white;
  padding: 0.8rem;
  border-radius: 30px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--text);
  transition: transform 0.2s;
}

.action_confirm--age:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--secondary);
}

.action_decline--age {
  flex: 1;
  background-color: white;
  color: var(--text);
  padding: 0.8rem;
  border-radius: 30px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 2px solid var(--text);
  transition: transform 0.2s;
}

.action_decline--age:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
}

@media (max-width: 620px) {
  .age_gate--floating-tile {
    top: auto;
    bottom: 20px;
    right: 10px;
    left: 10px;
    max-width: none;
    border-radius: 30px 30px 0 30px;
    padding: 1.5rem;
  }
  
  .gate_actions {
    flex-direction: column;
  }
}

.cookie_shelf--bottom-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text);
  color: white;
  border-top: 6px solid var(--accent);
  box-shadow: 0 -8px 0 var(--primary);
  padding: 1rem 2rem;
  z-index: 999;
  transition: transform 0.4s ease;
  transform: translateY(0);
}

.cookie_shelf--bottom-drawer[aria-hidden="true"] {
  transform: translateY(100%);
  pointer-events: none;
}

.shelf_content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.shelf_left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 400px;
}

.shelf_icon {
  font-size: 2.8rem;
  color: var(--accent);
  background-color: white;
  padding: 0.5rem;
  border-radius: 50% 50% 0 50%;
  border: 3px solid var(--primary);
}

.shelf_text {
  flex: 1;
}

.shelf_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.shelf_description {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

.shelf_link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline wavy var(--accent);
}

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

.shelf_confirm {
  background-color: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 40px 40px 0 40px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 3px solid white;
  transition: transform 0.2s;
  white-space: nowrap;
}

.shelf_confirm:hover {
  transform: scale(1.02) translateY(-2px);
  background-color: var(--secondary);
}

@media (max-width: 700px) {
  .cookie_shelf--bottom-drawer {
    padding: 1.5rem;
  }
  
  .shelf_content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .shelf_left {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .shelf_confirm {
    justify-content: center;
    white-space: normal;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 360px) {
  .shelf_icon {
    font-size: 2rem;
  }
  
  .shelf_title {
    font-size: 1.2rem;
  }
}

.compass_hopper {
  position: fixed;
  right: 25px;
  bottom: 100px;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.compass_hopper.visible {
  opacity: 1;
  visibility: visible;
}

.hopper_track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background-color: white;
  padding: 0.8rem 0.5rem;
  border-radius: 50px;
  border: 3px solid var(--primary);
  box-shadow: 6px 6px 0 var(--secondary);
}

.hopper_btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--background);
  color: var(--text);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  transition: all 0.2s;
  cursor: pointer;
}

.hopper_btn:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
  border-color: var(--text);
}

.hopper_progress {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  outline: 3px solid var(--primary);
  overflow: hidden;
}

.progress_digit {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  z-index: 2;
}

.progress_symbol {
  font-size: 0.7rem;
  color: white;
  opacity: 0.9;
  z-index: 2;
}

.progress_fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--primary);
  transition: height 0.1s;
  z-index: 1;
}

@media (max-width: 640px) {
  .compass_hopper {
    right: 15px;
    bottom: 80px;
  }
  
  .hopper_track {
    padding: 0.5rem 0.3rem;
    gap: 0.5rem;
  }
  
  .hopper_btn {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  
  .hopper_progress {
    width: 50px;
    height: 50px;
  }
  
  .progress_digit {
    font-size: 1.3rem;
  }
}

.entry_dome {
  position: relative;
  width: 100%;
  min-height: 70vh;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dome_visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.dome_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.dome_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 2;
}

.dome_content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 3rem var(--padding-desktop);
  text-align: center;
  color: white;
  animation: slideStripe 1s ease-out;
}

@keyframes slideStripe {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dome_headline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 0 var(--primary);
  letter-spacing: -0.02em;
}

.dome_subhead {
  font-size: clamp(1rem, 3vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.dome_benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefit_tile {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 3px solid white;
  border-radius: 20px 20px 0 20px;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  box-shadow: 6px 6px 0 var(--primary);
}

.benefit_tile:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
}

.benefit_icon {
  font-size: 2rem;
  color: var(--accent);
  filter: drop-shadow(2px 2px 0 var(--primary));
  transition: transform 0.2s ease;
}

.benefit_tile:hover .benefit_icon {
  transform: scale(1.1);
}

.benefit_label {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dome_actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.action_primary {
  background-color: var(--primary);
  color: var(--text);
  padding: 1rem 2.5rem;
  border-radius: 40px 40px 0 40px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 3px solid white;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.action_primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--secondary);
  background-color: var(--accent);
}

.action_secondary {
  background-color: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 40px 40px 0 40px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 3px solid white;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.action_secondary:hover {
  transform: translate(-3px, -3px);
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--accent);
}

.dome_age {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
  border-top: 2px dashed var(--accent);
  padding-top: 1rem;
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .entry_dome {
    max-height: 100%;
    min-height: 60vh;
  }
  
  .dome_content {
    padding: 2rem var(--padding-mobile);
    animation: none;
  }
  
  .dome_benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .benefit_tile {
    padding: 0.8rem 0.3rem;
    transition: none;
  }
  
  .benefit_tile:hover {
    transform: none;
  }
  
  .benefit_icon {
    font-size: 1.6rem;
    transition: none;
  }
  
  .benefit_tile:hover .benefit_icon {
    transform: none;
  }
  
  .benefit_label {
    font-size: 0.9rem;
  }
  
  .action_primary, .action_secondary {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    transition: none;
  }
  
  .action_primary:hover, .action_secondary:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .dome_headline {
    text-shadow: 2px 2px 0 var(--primary);
  }
  
  .dome_benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .dome_overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
  }
}

@media (max-width: 360px) {
  .dome_benefits {
    grid-template-columns: 1fr;
  }
  
  .benefit_tile {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

.platform_arcade {
  padding: 4rem var(--padding-desktop);
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.platform_arcade::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.platform_arcade::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--primary);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 0;
}

.arcade_header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.arcade_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.arcade_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.arcade_description {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.8;
}

.arcade_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(720px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.arena_card {
  background-color: white;
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 8px 8px 0 var(--secondary);
}

.arena_card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 13px 13px 0 var(--primary);
}

.card_stripe {
  height: 12px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary),
    var(--primary) 10px,
    var(--accent) 10px,
    var(--accent) 20px
  );
  border-radius: 27px 27px 0 0;
}

.card_content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card_name {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.card_rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 2px solid var(--accent);
}

.rating_stars {
  display: flex;
  gap: 0.2rem;
}

.star_filled {
  color: var(--primary);
  font-size: 1.2rem;
}

.star_half {
  color: var(--primary);
  font-size: 1.2rem;
  position: relative;
}

.star_empty {
  color: #ddd;
  font-size: 1.2rem;
}

.rating_score {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--text);
  background-color: white;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid var(--secondary);
}

.card_welcome {
  background-color: var(--secondary);
  color: white;
  padding: 1rem;
  border-radius: 20px 20px 0 20px;
  margin-bottom: 1.5rem;
  text-align: center;
  border: 2px solid var(--text);
}

.welcome_tag {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.welcome_value {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.card_bonuses {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.bonus_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--accent);
}

.bonus_icon {
  color: var(--primary);
  font-size: 1.2rem;
  min-width: 1.5rem;
  text-align: center;
}

.bonus_text {
  font-size: 0.95rem;
  color: var(--text);
}

.card_link {
  display: block;
  background-color: var(--primary);
  color: var(--text);
  text-align: center;
  padding: 1rem;
  border-radius: 40px 40px 0 40px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 3px solid var(--text);
  transition: transform 0.2s ease, background-color 0.2s ease;
  margin-top: auto;
}

.card_link:hover {
  transform: translate(-3px, -3px);
  background-color: var(--accent);
  box-shadow: 5px 5px 0 var(--secondary);
}

@media (max-width: 720px) {
  .platform_arcade {
    padding: 3rem var(--padding-mobile);
  }
  
  .arcade_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .arena_card {
    transition: none;
  }
  
  .arena_card:hover {
    transform: none;
    box-shadow: 8px 8px 0 var(--secondary);
  }
  
  .card_link {
    transition: none;
  }
  
  .card_link:hover {
    transform: none;
    background-color: var(--primary);
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .card_name {
    font-size: 1.8rem;
  }
  
  .welcome_value {
    font-size: 1rem;
  }
  
  .bonus_item {
    gap: 0.5rem;
  }
  
  .bonus_text {
    font-size: 0.85rem;
  }
}

.criteria_lab {
  padding: 4rem var(--padding-desktop);
  background: linear-gradient(135deg, var(--background) 0%, hsl(40, 30%, 95%) 100%);
  position: relative;
  overflow: hidden;
}

.criteria_lab::before {
  content: '🔍';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8rem;
  opacity: 0.03;
  transform: rotate(15deg);
  pointer-events: none;
}

.lab_header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.lab_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.lab_title::before {
  content: '⚡';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.5;
}

.lab_title::after {
  content: '⚡';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  opacity: 0.5;
}

.lab_subtitle {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
}

.lab_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}

.criterion_card {
  background-color: white;
  border: 3px solid var(--text);
  border-radius: 0 30px 0 30px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 6px 6px 0 var(--secondary);
  position: relative;
}

.criterion_card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--primary);
}

.criterion_icon-wrapper {
  min-width: 60px;
  height: 60px;
  background-color: var(--accent);
  border-radius: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
  transform: rotate(-2deg);
}

.criterion_icon {
  font-size: 2rem;
  color: var(--text);
}

.criterion_text {
  flex: 1;
}

.criterion_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.criterion_description {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.4;
}

.lab_insight {
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: var(--secondary);
  border: 4px solid var(--text);
  border-radius: 50px 50px 0 50px;
  padding: 2rem;
  position: relative;
  z-index: 2;
  box-shadow: 10px 10px 0 var(--primary);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.insight_badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 80px;
}

.insight_badge i {
  font-size: 2.5rem;
  color: var(--accent);
  filter: drop-shadow(2px 2px 0 var(--text));
}

.insight_badge span {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  background-color: var(--text);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  transform: rotate(-2deg);
  border: 2px solid var(--accent);
}

.insight_content {
  flex: 1;
  position: relative;
}

.insight_text {
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.insight_decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--accent);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
}

@media (max-width: 720px) {
  .criteria_lab {
    padding: 3rem var(--padding-small);
  }
  
  .lab_title::before,
  .lab_title::after {
    display: none;
  }
  
  .lab_grid {
    gap: 1rem;
  }
  
  .criterion_card {
    padding: 1rem;
    gap: 0.8rem;
    transition: none;
  }
  
  .criterion_card:hover {
    transform: none;
    box-shadow: 6px 6px 0 var(--secondary);
  }
  
  .criterion_icon-wrapper {
    min-width: 50px;
    height: 50px;
  }
  
  .criterion_icon {
    font-size: 1.5rem;
  }
  
  .criterion_title {
    font-size: 1.1rem;
  }
  
  .lab_insight {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 30px 30px 0 30px;
  }
  
  .insight_badge {
    flex-direction: row;
    min-width: auto;
  }
  
  .insight_badge span {
    transform: rotate(0);
  }
  
  .insight_text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .criterion_card {
    flex-direction: column;
    text-align: center;
  }
  
  .criterion_icon-wrapper {
    transform: rotate(0);
  }
  
  .insight_badge {
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .criterion_description {
    font-size: 0.85rem;
  }
  
  .insight_text {
    font-size: 0.9rem;
  }
}

.deep_dive {
  padding: 5rem var(--padding-desktop);
  background-color: white;
  position: relative;
  overflow: hidden;
}

.dive_decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, var(--primary) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}

.dive_container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dive_header {
  margin-bottom: 3rem;
  position: relative;
}

.dive_eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  background-color: var(--accent);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 1rem;
  border: 2px solid var(--text);
  transform: rotate(-1deg);
}

.dive_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
  max-width: 800px;
  position: relative;
}

.dive_title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.dive_content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.dive_visual {
  position: sticky;
  top: 100px;
}

.visual_stack {
  position: relative;
  height: 300px;
  margin-bottom: 1.5rem;
}

.stack_item {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 4px solid var(--text);
  transition: transform 0.3s ease;
}

.stack_item--1 {
  background-color: var(--primary);
  top: 0;
  left: 0;
  transform: rotate(5deg);
  border-radius: 30px 30px 0 30px;
  z-index: 1;
}

.stack_item--2 {
  background-color: var(--secondary);
  top: 40px;
  left: 40px;
  transform: rotate(-3deg);
  border-radius: 30px 30px 30px 0;
  z-index: 2;
}

.stack_item--3 {
  background-color: var(--accent);
  top: 80px;
  left: 80px;
  transform: rotate(2deg);
  border-radius: 0 30px 30px 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack_item--3 i {
  font-size: 4rem;
  color: var(--text);
  transform: rotate(-2deg);
}

.visual_caption {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
  margin-top: 1rem;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

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

.text_paragraph--lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  padding: 1.5rem;
  background-color: var(--background);
  border-radius: 30px 30px 30px 0;
  border: 2px solid var(--text);
  box-shadow: 6px 6px 0 var(--accent);
}

.text_block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  border-bottom: 2px dashed var(--secondary);
}

.block_icon {
  font-size: 1.8rem;
  color: var(--primary);
  min-width: 2.5rem;
  filter: drop-shadow(2px 2px 0 var(--accent));
}

.block_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.block_text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
}

.dive_quote {
  background-color: var(--secondary);
  color: white;
  padding: 2rem;
  border-radius: 0 50px 0 50px;
  margin: 1rem 0;
  position: relative;
  border: 3px solid var(--text);
  box-shadow: 8px 8px 0 var(--primary);
}

.quote_mark {
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 3rem;
  color: var(--accent);
  background-color: white;
  border-radius: 50%;
  padding: 0.5rem;
  border: 2px solid var(--text);
}

.quote_text {
  font-size: 1.2rem;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.quote_author {
  display: block;
  text-align: right;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  opacity: 0.9;
}

.dive_stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--text);
  margin-top: 1rem;
}

.stat_item {
  text-align: center;
}

.stat_number {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat_label {
  font-size: 0.8rem;
  color: var(--text);
  max-width: 120px;
  display: block;
}

.stat_divider {
  width: 2px;
  height: 50px;
  background-color: var(--accent);
  transform: rotate(15deg);
}

@media (max-width: 960px) {
  .dive_content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dive_visual {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .deep_dive {
    padding: 3rem var(--padding-mobile);
  }
  
  .dive_title::after {
    width: 80px;
  }
  
  .stack_item {
    width: 140px;
    height: 140px;
  }
  
  .stack_item--2 {
    top: 30px;
    left: 30px;
  }
  
  .stack_item--3 {
    top: 60px;
    left: 60px;
  }
  
  .stack_item--3 i {
    font-size: 3rem;
  }
  
  .text_paragraph--lead {
    font-size: 1.1rem;
    padding: 1rem;
  }
  
  .text_block {
    gap: 0.8rem;
  }
  
  .block_title {
    font-size: 1.1rem;
  }
  
  .block_text {
    font-size: 0.95rem;
  }
  
  .dive_quote {
    padding: 1.5rem;
  }
  
  .quote_text {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .dive_stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat_divider {
    width: 100px;
    height: 2px;
    transform: none;
  }
  
  .stack_item--1, .stack_item--2, .stack_item--3 {
    transition: none;
  }
}

@media (max-width: 480px) {
  .dive_eyebrow {
    font-size: 0.8rem;
  }
  
  .text_block {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .block_icon {
    align-self: flex-start;
  }
  
  .stat_number {
    font-size: 1.8rem;
  }
}

.game_academy {
  padding: 5rem var(--padding-desktop);
  background: linear-gradient(170deg, var(--background) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.game_academy::before {
  content: '♠️♥️♣️♦️';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 5rem;
  opacity: 0.03;
  transform: rotate(-10deg);
  white-space: nowrap;
  pointer-events: none;
}

.academy_header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
}

.header_decor-left,
.header_decor-right {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 10px, transparent 10px, transparent 20px);
}

.header_decor-left {
  left: 0;
  transform: translateY(-50%);
}

.header_decor-right {
  right: 0;
  transform: translateY(-50%);
}

.academy_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  background-color: white;
  padding: 0 2rem;
}

.academy_subtitle {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
}

.academy_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.game_masterclass {
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 40px 40px 0 40px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 10px 10px 0 var(--secondary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game_masterclass:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 var(--primary);
}

.masterclass_ribbon {
  position: absolute;
  top: -10px;
  left: 30px;
  background-color: var(--primary);
  color: var(--text);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 1.5rem;
  border-radius: 30px 30px 0 30px;
  border: 2px solid var(--text);
  transform: rotate(-2deg);
  z-index: 2;
}

.masterclass_ribbon--blue {
  background-color: var(--secondary);
  color: white;
}

.masterclass_icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent);
  border-radius: 30px 30px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: 3px solid var(--text);
  transform: rotate(2deg);
}

.masterclass_icon i {
  font-size: 2.5rem;
  color: var(--text);
  transform: rotate(-2deg);
}

.masterclass_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.masterclass_tag {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.masterclass_description {
  flex: 1;
  margin-bottom: 1.5rem;
}

.description_paragraph {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text);
}

.description_paragraph strong {
  font-family: 'Fredoka', sans-serif;
  color: var(--primary);
  background-color: rgba(255, 215, 0, 0.1);
  padding: 0.1rem 0.3rem;
  border-radius: 4px;
}

.masterclass_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 3px dotted var(--accent);
  font-size: 0.9rem;
}

.footer_provider {
  font-weight: 600;
  color: var(--text);
  opacity: 0.7;
}

.footer_volatility {
  font-family: 'Fredoka', sans-serif;
  background-color: var(--background);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--text);
}

.volatility_high {
  color: #d32f2f;
  font-weight: 700;
}

.edge_low {
  color: #2e7d32;
  font-weight: 700;
}

.skill_medium {
  color: var(--primary);
  font-weight: 700;
}

.volatility_variable {
  color: var(--secondary);
  font-weight: 700;
}

.academy_disclaimer {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--text);
  color: white;
  border-radius: 30px 30px 0 30px;
  border: 3px solid var(--primary);
}

.disclaimer_icon {
  font-size: 2rem;
  color: var(--accent);
  min-width: 2.5rem;
}

.disclaimer_text {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 860px) {
  .academy_grid {
    grid-template-columns: 1fr;
  }
  
  .header_decor-left,
  .header_decor-right {
    display: none;
  }
}

@media (max-width: 720px) {
  .game_academy {
    padding: 3rem var(--padding-mobile);
  }
  
  .academy_title {
    padding: 0;
    background-color: transparent;
  }
  
  .game_masterclass {
    padding: 1.5rem;
    transition: none;
    box-shadow: 8px 8px 0 var(--secondary);
  }
  
  .game_masterclass:hover {
    transform: none;
    box-shadow: 8px 8px 0 var(--secondary);
  }
  
  .masterclass_icon {
    width: 60px;
    height: 60px;
  }
  
  .masterclass_icon i {
    font-size: 2rem;
  }
  
  .masterclass_title {
    font-size: 1.8rem;
  }
  
  .description_paragraph {
    font-size: 0.9rem;
  }
  
  .academy_disclaimer {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .masterclass_footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .masterclass_ribbon {
    left: 15px;
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
  }
}

.registration_lab {
  padding: 5rem var(--padding-desktop);
  background-color: white;
  position: relative;
  overflow: hidden;
}

.lab_backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, var(--primary) 1px, transparent 1px),
    linear-gradient(-45deg, var(--accent) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

.registration_container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.registration_header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.header_badge {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: var(--secondary);
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--text);
  margin-bottom: 1.5rem;
  transform: rotate(-1deg);
}

.header_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.header_subtitle {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.registration_steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.step_card {
  background-color: var(--background);
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  padding: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 8px 8px 0 var(--primary);
}

.step_card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--secondary);
}

.step_card--last {
  border-radius: 30px 30px 30px 0;
}

.step_number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  border: 3px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  z-index: 3;
  box-shadow: 3px 3px 0 var(--secondary);
}

.step_content {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 2rem 2rem 4rem;
}

.step_icon {
  min-width: 60px;
  height: 60px;
  background-color: white;
  border: 3px solid var(--text);
  border-radius: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(2deg);
}

.step_icon i {
  font-size: 2rem;
  color: var(--primary);
  transform: rotate(-2deg);
}

.step_text {
  flex: 1;
}

.step_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.step_description {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.step_note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 20px 20px 0 20px;
  border: 2px dashed var(--secondary);
  font-size: 0.9rem;
}

.step_note i {
  color: var(--primary);
  font-size: 1.2rem;
}

.registration_verify {
  background-color: var(--secondary);
  color: white;
  padding: 2rem;
  border-radius: 40px 40px 0 40px;
  margin-bottom: 2rem;
  border: 4px solid var(--text);
  box-shadow: 8px 8px 0 var(--primary);
}

.verify_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verify_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.verify_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 20px 20px 0 20px;
  border: 2px solid white;
}

.verify_item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.verify_note {
  font-size: 0.9rem;
  opacity: 0.9;
  font-style: italic;
}

.registration_tip {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background-color: var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 30px 30px 30px 0;
  border: 3px solid var(--text);
  box-shadow: 6px 6px 0 var(--secondary);
}

.tip_icon {
  min-width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--text);
}

.tip_icon i {
  font-size: 2rem;
  color: var(--secondary);
}

.tip_label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.tip_text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

@media (max-width: 720px) {
  .registration_lab {
    padding: 3rem var(--padding-mobile);
  }
  
  .step_content {
    flex-direction: column;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    gap: 1rem;
  }
  
  .step_icon {
    align-self: flex-start;
  }
  
  .step_card {
    transition: none;
  }
  
  .step_card:hover {
    transform: none;
    box-shadow: 8px 8px 0 var(--primary);
  }
  
  .step_title {
    font-size: 1.2rem;
  }
  
  .step_description {
    font-size: 0.9rem;
  }
  
  .verify_grid {
    grid-template-columns: 1fr;
  }
  
  .registration_tip {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tip_icon {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .header_badge {
    font-size: 0.8rem;
    padding: 0.2rem 1rem;
  }
  
  .step_note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .verify_title {
    font-size: 1.3rem;
  }
  
  .tip_text {
    font-size: 0.9rem;
  }
}

.subscribe_bunker {
  padding: 5rem var(--padding-desktop);
  background: linear-gradient(145deg, var(--secondary) 0%, hsl(190, 80%, 35%) 100%);
  position: relative;
  overflow: hidden;
}

.bunker_backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 10px, transparent 10px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 15px, transparent 15px, transparent 30px);
  pointer-events: none;
}

.bunker_container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bunker_header {
  text-align: center;
  margin-bottom: 2.5rem;
  color: white;
}

.bunker_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 4px 4px 0 var(--primary);
}

.bunker_subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 450px;
  margin: 0 auto;
}

.bunker_form {
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 50px 50px 0 50px;
  padding: 2.5rem;
  box-shadow: 15px 15px 0 var(--primary);
  transition: opacity 0.3s, visibility 0.3s;
}

.bunker_form.hidden {
  display: none;
}

.form_group {
  margin-bottom: 1.5rem;
}

.form_label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  padding-left: 0.5rem;
}

.form_input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form_input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 5px 5px 0 var(--accent);
}

.form_icon {
  position: absolute;
  left: 15px;
  font-size: 1.3rem;
  color: var(--secondary);
  pointer-events: none;
}

.form_input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  border-radius: 27px 27px 0 27px;
}

.form_input:focus {
  outline: none;
}

.form_hint {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background-color: var(--accent);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 20px 20px 20px 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 10;
}

.form_input:focus + .form_hint,
.form_input-wrapper:focus-within .form_hint {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form_hint i {
  font-size: 1rem;
  color: var(--text);
}

.form_submit {
  width: 100%;
  background-color: var(--primary);
  color: var(--text);
  border: 3px solid var(--text);
  border-radius: 40px 40px 0 40px;
  padding: 1.2rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
}

.form_submit:not(:disabled):hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--secondary);
}

.form_submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #ccc;
}

.form_disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: var(--text);
  opacity: 0.7;
}

.form_disclaimer a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline wavy var(--accent);
}

.bunker_success {
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 50px 50px 50px 0;
  padding: 2.5rem;
  box-shadow: 15px 15px 0 var(--primary);
  display: none;
}

.bunker_success.visible {
  display: block;
}

.success_badge {
  width: 80px;
  height: 80px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--text);
  box-shadow: 6px 6px 0 var(--secondary);
}

.success_badge i {
  font-size: 3rem;
  color: var(--text);
}

.success_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 1rem;
}

.success_content {
  text-align: center;
}

.success_text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--text);
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: 30px 30px 30px 0;
  border: 2px dashed var(--secondary);
}

.success_text strong {
  color: var(--primary);
  font-family: 'Fredoka', sans-serif;
}

.success_stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat_block {
  text-align: center;
}

.stat_value {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat_label {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.7;
}

.success_actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.success_btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px 30px 0 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--text);
  transition: transform 0.2s;
  cursor: pointer;
}

.success_btn--change {
  background-color: var(--background);
  color: var(--text);
}

.success_btn--change:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--secondary);
}

.success_btn--unsubscribe {
  background-color: white;
  color: var(--text);
  border-color: var(--primary);
}

.success_btn--unsubscribe:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--primary);
}

.success_footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px dotted var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.7;
}

.success_footer a {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .subscribe_bunker {
    padding: 3rem var(--padding-mobile);
  }
  
  .bunker_form,
  .bunker_success {
    padding: 1.5rem;
  }
  
  .form_hint {
    bottom: -50px;
    font-size: 0.8rem;
  }
  
  .form_submit {
    font-size: 1.1rem;
    padding: 1rem;
  }
  
  .success_stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .success_actions {
    flex-direction: column;
  }
  
  .form_submit:not(:disabled):hover {
    transform: none;
    box-shadow: none;
  }
  
  .success_btn:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .bunker_title {
    text-shadow: 2px 2px 0 var(--primary);
  }
  
  .form_input {
    font-size: 0.9rem;
  }
  
  .success_badge {
    width: 60px;
    height: 60px;
  }
  
  .success_badge i {
    font-size: 2rem;
  }
  
  .success_title {
    font-size: 1.8rem;
  }
}

.security_vault {
  padding: 5rem var(--padding-desktop);
  background-color: var(--text);
  position: relative;
  overflow: hidden;
}

.vault_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, var(--primary) 2px, transparent 2px),
    linear-gradient(-45deg, var(--secondary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.1;
  pointer-events: none;
}

.vault_container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vault_header {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.header_stamp {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: var(--primary);
  color: var(--text);
  padding: 0.3rem 1.5rem;
  border-radius: 30px;
  border: 2px solid white;
  margin-bottom: 1.5rem;
  transform: rotate(-1deg);
}

.header_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
  text-shadow: 4px 4px 0 var(--primary);
}

.header_subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto;
}

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

.vault_card {
  background-color: white;
  border: 4px solid var(--primary);
  border-radius: 40px 40px 0 40px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 10px 10px 0 var(--secondary);
}

.vault_card:hover {
  transform: translate(-5px, -5px);
  box-shadow: 15px 15px 0 var(--accent);
}

.vault_card--accent {
  border-color: var(--accent);
  box-shadow: 10px 10px 0 var(--primary);
}

.vault_card--accent:hover {
  box-shadow: 15px 15px 0 var(--secondary);
}

.card_emblem {
  width: 70px;
  height: 70px;
  background-color: var(--background);
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: rotate(2deg);
}

.card_emblem i {
  font-size: 2.5rem;
  color: var(--primary);
  transform: rotate(-2deg);
}

.vault_card--accent .card_emblem i {
  color: var(--secondary);
}

.card_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.card_text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.card_badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--background);
  padding: 0.5rem 1rem;
  border-radius: 30px 30px 0 30px;
  border: 2px solid var(--text);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
}

.card_badge i {
  color: var(--primary);
  font-size: 1rem;
}

.vault_trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem 2rem;
  border-radius: 50px 50px 0 50px;
  border: 2px solid var(--primary);
  backdrop-filter: blur(5px);
}

.trust_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
}

.trust_item i {
  font-size: 1.5rem;
  color: var(--accent);
}

@media (max-width: 720px) {
  .security_vault {
    padding: 3rem var(--padding-small);
  }
  
  .vault_card {
    transition: none;
    box-shadow: 8px 8px 0 var(--secondary);
  }
  
  .vault_card:hover {
    transform: none;
    box-shadow: 8px 8px 0 var(--secondary);
  }
  
  .vault_card--accent:hover {
    box-shadow: 8px 8px 0 var(--primary);
  }
  
  .vault_trust {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .header_stamp {
    transform: none;
  }
}

@media (max-width: 480px) {
  .card_emblem {
    width: 60px;
    height: 60px;
  }
  
  .card_emblem i {
    font-size: 2rem;
  }
  
  .card_title {
    font-size: 1.4rem;
  }
  
  .trust_item {
    font-size: 0.9rem;
  }
}

.mobile_freedom {
  padding: 5rem var(--padding-desktop);
  background: linear-gradient(145deg, var(--background) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.freedom_waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: repeating-linear-gradient(45deg, var(--primary) 0px, var(--primary) 20px, transparent 20px, transparent 40px);
  opacity: 0.1;
  pointer-events: none;
}

.freedom_container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.header_badge {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: var(--secondary);
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--text);
  margin-bottom: 1.5rem;
  transform: rotate(1deg);
}

.header_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 1rem;
  text-shadow: 5px 5px 0 var(--primary);
}

.header_subtitle {
  font-size: 1.2rem;
  color: var(--text);
  opacity: 0.7;
  max-width: 500px;
  margin: 0 auto;
}

.freedom_showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.showcase_device {
  position: relative;
  display: flex;
  justify-content: center;
}

.device_frame {
  width: 280px;
  height: 500px;
  background-color: var(--text);
  border-radius: 40px;
  border: 5px solid var(--primary);
  position: relative;
  box-shadow: 20px 20px 0 var(--secondary);
  overflow: hidden;
}

.frame_notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 30px;
  background-color: var(--text);
  border-radius: 20px;
  border: 3px solid var(--primary);
  z-index: 2;
}

.frame_screen {
  position: absolute;
  top: 60px;
  left: 15px;
  right: 15px;
  bottom: 60px;
  background-color: var(--background);
  border-radius: 30px;
  border: 3px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.frame_screen i {
  font-size: 3rem;
  color: var(--secondary);
  background-color: white;
  padding: 1rem;
  border-radius: 50%;
  border: 2px solid var(--text);
  transform: rotate(-2deg);
}

.frame_screen i:nth-child(2) {
  transform: rotate(3deg);
  color: var(--primary);
}

.frame_screen i:nth-child(3) {
  transform: rotate(-1deg);
  color: var(--accent);
}

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

.feature_block {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  background-color: white;
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 6px 6px 0 var(--primary);
}

.feature_block:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--secondary);
}

.feature_icon {
  min-width: 60px;
  height: 60px;
  background-color: var(--accent);
  border: 3px solid var(--text);
  border-radius: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(2deg);
}

.feature_icon i {
  font-size: 2rem;
  color: var(--text);
  transform: rotate(-2deg);
}

.feature_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.feature_description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.85;
}

.freedom_stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat_circle {
  width: 140px;
  height: 140px;
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 0 var(--primary);
}

.stat_number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat_label {
  font-size: 0.8rem;
  text-align: center;
  max-width: 100px;
  color: var(--text);
}

.freedom_note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: var(--secondary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px 50px 0 50px;
  border: 3px solid var(--text);
  box-shadow: 6px 6px 0 var(--primary);
  max-width: 700px;
  margin: 0 auto;
}

.freedom_note i {
  font-size: 1.5rem;
  color: var(--accent);
}

.freedom_note span {
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 860px) {
  .freedom_showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase_device {
    order: -1;
  }
}

@media (max-width: 720px) {
  .mobile_freedom {
    padding: 3rem var(--padding-mobile);
  }
  
  .feature_block {
    transition: none;
    box-shadow: 6px 6px 0 var(--primary);
  }
  
  .feature_block:hover {
    transform: none;
    box-shadow: 6px 6px 0 var(--primary);
  }
  
  .device_frame {
    width: 240px;
    height: 440px;
  }
  
  .freedom_stats {
    gap: 1rem;
  }
  
  .stat_circle {
    width: 110px;
    height: 110px;
  }
  
  .stat_number {
    font-size: 1.8rem;
  }
  
  .freedom_note {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header_title {
    text-shadow: 3px 3px 0 var(--primary);
  }
  
  .feature_block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .feature_icon {
    align-self: center;
  }
  
  .freedom_stats {
    flex-direction: column;
    align-items: center;
  }
  
  .stat_circle {
    width: 130px;
    height: 130px;
  }
}

.faq_zone {
  padding: 5rem var(--padding-desktop);
  background-color: white;
  position: relative;
  overflow: hidden;
}

.zone_dots {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(var(--primary) 3px, transparent 3px);
  background-size: 30px 30px;
  opacity: 0.1;
  pointer-events: none;
}

.faq_container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq_header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.faq_title::after {
  content: '?';
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  transform: rotate(15deg);
}

.faq_subtitle {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.7;
}

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

.faq_item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--background);
  border: 3px solid var(--text);
  border-radius: 30px 30px 0 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 6px 6px 0 var(--secondary);
}

.faq_item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--primary);
}

.item_icon {
  min-width: 50px;
  height: 50px;
  background-color: var(--accent);
  border: 2px solid var(--text);
  border-radius: 20px 20px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(2deg);
}

.item_icon i {
  font-size: 1.8rem;
  color: var(--text);
  transform: rotate(-2deg);
}

.item_content {
  flex: 1;
}

.item_question {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.item_answer {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.85;
}

.faq_footer {
  position: relative;
  margin-top: 2rem;
}

.footer_pattern {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 20px, transparent 20px, transparent 40px);
  opacity: 0.5;
}

.footer_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--secondary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 40px 40px 0 40px;
  border: 4px solid var(--text);
  box-shadow: 10px 10px 0 var(--primary);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer_text {
  font-size: 1.2rem;
  font-weight: 500;
  font-family: 'Fredoka', sans-serif;
}

.footer_link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--primary);
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 30px 30px 0 30px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border: 3px solid var(--text);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer_link:hover {
  transform: translate(-3px, -3px);
  background-color: var(--accent);
  box-shadow: 5px 5px 0 white;
}

.footer_link i:first-child {
  font-size: 1.3rem;
}

.footer_link i:last-child {
  font-size: 1.5rem;
}

@media (max-width: 720px) {
  .faq_zone {
    padding: 3rem var(--padding-mobile);
  }
  
  .faq_title::after {
    display: none;
  }
  
  .faq_grid {
    grid-template-columns: 1fr;
  }
  
  .faq_item {
    transition: none;
    box-shadow: 6px 6px 0 var(--secondary);
  }
  
  .faq_item:hover {
    transform: none;
    box-shadow: 6px 6px 0 var(--secondary);
  }
  
  .footer_content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer_link {
    width: 100%;
    justify-content: center;
  }
  
  .footer_link:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .faq_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .item_icon {
    align-self: center;
  }
  
  .footer_text {
    font-size: 1rem;
  }
  
  .footer_link {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

.responsible_zone {
  padding: 5rem var(--padding-desktop);
  background: linear-gradient(145deg, #f8f4e9 0%, #f0e8d5 100%);
  position: relative;
  overflow: hidden;
}

.zone_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, var(--primary) 0px, var(--primary) 4px, transparent 4px, transparent 20px),
    repeating-linear-gradient(-45deg, var(--secondary) 0px, var(--secondary) 2px, transparent 2px, transparent 16px);
  opacity: 0.05;
  pointer-events: none;
}

.responsible_container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.responsible_header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.header_badge {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background-color: var(--primary);
  color: var(--text);
  padding: 0.3rem 1.5rem;
  border-radius: 30px;
  border: 2px solid var(--text);
  margin-bottom: 1rem;
  transform: rotate(-1deg);
}

.header_title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  color: var(--text);
  text-shadow: 4px 4px 0 var(--secondary);
}

.responsible_content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.content_main {
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 40px 40px 0 40px;
  padding: 2rem;
  box-shadow: 10px 10px 0 var(--primary);
}

.main_text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.main_text:last-child {
  margin-bottom: 0;
}

.text_link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline wavy var(--primary);
  padding: 0.1rem 0.2rem;
  transition: background-color 0.2s;
}

.text_link:hover {
  background-color: var(--accent);
  color: var(--text);
  text-decoration: none;
}

.content_highlight {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 4px solid var(--text);
  border-radius: 30px 30px 0 30px;
  box-shadow: 8px 8px 0 var(--text);
  transition: transform 0.3s ease;
}

.highlight_box:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--text);
}

.highlight_box--red {
  background-color: #ff4444;
  color: white;
}

.highlight_box--amber {
  background-color: #ffbb33;
  color: var(--text);
}

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

.box_number {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.box_label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.box_icon {
  font-size: 3rem;
  opacity: 0.8;
}

.responsible_partners {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: white;
  border: 4px solid var(--text);
  border-radius: 50px 50px 0 50px;
  box-shadow: 10px 10px 0 var(--secondary);
}

.partners_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 2rem;
}

.partners_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.partner_card {
  display: block;
  width: 235px;
  height: 66px;
  border: 3px solid var(--text);
  border-radius: 15px 15px 0 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  box-shadow: 5px 5px 0 var(--primary);
}

.partner_card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--secondary);
}

.partner_image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: rgb(4, 44, 221);
  padding: 0.5rem;
}

.partners_note {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.7;
  font-style: italic;
}

.responsible_footer {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background-color: var(--text);
  color: white;
  border-radius: 40px 40px 0 40px;
  border: 3px solid var(--primary);
}

.footer_tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.footer_tools i {
  font-size: 1.3rem;
  color: var(--accent);
}

@media (max-width: 860px) {
  .responsible_content {
    grid-template-columns: 1fr;
  }
  
  .content_highlight {
    flex-direction: row;
  }
  
  .highlight_box {
    flex: 1;
  }
}

@media (max-width: 720px) {
  .responsible_zone {
    padding: 3rem var(--padding-mobile);
  }
  
  .content_highlight {
    flex-direction: column;
  }
  
  .partners_grid {
    gap: 1rem;
  }
  
  .partner_card {
    width: 200px;
    height: 56px;
  }
  
  .responsible_footer {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .highlight_box {
    transition: none;
  }
  
  .highlight_box:hover {
    transform: none;
    box-shadow: 8px 8px 0 var(--text);
  }
  
  .partner_card {
    transition: none;
  }
  
  .partner_card:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--primary);
  }
}

@media (max-width: 480px) {
  .header_title {
    text-shadow: 2px 2px 0 var(--secondary);
  }
  
  .box_number {
    font-size: 2.5rem;
  }
  
  .partner_card {
    width: 100%;
    max-width: 235px;
  }
  
  .footer_tools {
    font-size: 0.9rem;
  }
}

.ground_control {
  padding: 4rem var(--padding-desktop) 2rem;
  background-color: var(--text);
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--primary);
}

.control_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, var(--primary) 1px, transparent 1px),
    linear-gradient(-45deg, var(--secondary) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

.control_container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.control_grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.control_info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info_brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.brand_icon {
  font-size: 2.5rem;
  color: var(--primary);
  background-color: white;
  padding: 0.5rem;
  border-radius: 20px 20px 0 20px;
  border: 2px solid var(--accent);
}

.brand_name {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-shadow: 3px 3px 0 var(--primary);
}

.info_description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 350px;
}

.info_contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.contact_item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact_item i {
  font-size: 1.2rem;
  color: var(--accent);
  min-width: 1.5rem;
}

.contact_link {
  color: white;
  text-decoration: underline wavy var(--primary);
  transition: color 0.2s;
}

.contact_link:hover {
  color: var(--primary);
}

.contact_text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.info_age {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.8rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 30px 30px 0 30px;
  border: 2px solid var(--primary);
  width: fit-content;
}

.age_badge {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  background-color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 20px 20px 0 20px;
  line-height: 1;
}

.age_text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.control_links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.links_title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.links_title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.links_title--policies {
  margin-top: 1rem;
}

.links_nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.nav_link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
  padding: 0.2rem 0;
  border-bottom: 1px dotted transparent;
}

.nav_link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  transform: translateX(5px);
}

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

.badges_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.badge_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1rem 0.5rem;
  border-radius: 20px 20px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
}

.badge_item i {
  font-size: 1.5rem;
  color: var(--accent);
}

.badges_partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 30px 30px 0 30px;
  border: 2px dashed var(--primary);
}

.partner_mini {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}

.partner_mini:hover {
  opacity: 1;
}

.partner_mini--18 {
  width: 40px;
  filter: none;
  background-color: white;
  padding: 0.3rem;
  border-radius: 10px 10px 0 10px;
  border: 2px solid var(--primary);
}

.control_copyright {
  margin-top: 2rem;
}

.copyright_line {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary), var(--primary) 20px, transparent 20px, transparent 40px);
  margin-bottom: 1.5rem;
}

.copyright_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.copyright_text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
}

.copyright_note {
  font-size: 0.8rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .control_grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .control_badges {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .ground_control {
    padding: 3rem var(--padding-mobile) 1.5rem;
  }
  
  .control_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .control_badges {
    grid-column: auto;
  }
  
  .badges_grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .nav_link:hover {
    transform: none;
  }
  
  .info_age {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .info_brand {
    flex-direction: column;
    text-align: center;
  }
  
  .badges_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .badges_partners {
    flex-direction: column;
  }
  
  .contact_item {
    flex-wrap: wrap;
  }
  
  .age_badge {
    font-size: 1.5rem;
  }
}