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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: hsl(40, 30%, 96%);
    color: hsl(200, 15%, 15%);
    font-family: 'Karla', sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

@font-face {
    font-family: 'Karla';
    src: url('/construct/type-foundry/karla.woff2') format('woff2');
    font-weight: 400 800;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Archivo Narrow';
    src: url('/construct/type-foundry/archivo-narrow.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Space Mono';
    src: url('/construct/type-foundry/space-mono.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

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

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

ul, ol {
    list-style: none;
}

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

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@media (max-width: 620px) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        -webkit-animation: none !important;
        -webkit-transition: none !important;
        -webkit-transform: none !important;
    }
    
    [class*="animate"],
    [class*="transition"],
    [class*="keyframes"] {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 420px) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

.age-panel--overlay_shade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Karla', sans-serif;
}

.age-panel--container_modal {
  background-color: hsl(40, 30%, 96%);
  max-width: 520px;
  width: 90%;
  border: 4px solid hsl(15, 80%, 55%);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 12px 12px 0 hsl(195, 70%, 45%);
}

.age-panel--header_section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  border-bottom: 3px solid hsl(50, 100%, 55%);
  padding-bottom: 1rem;
}

.age-panel--icon_primary {
  font-size: 2.8rem;
  color: hsl(15, 80%, 55%);
}

.age-panel--title_main {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: hsl(200, 15%, 15%);
  margin: 0;
}

.age-panel--content_wrap {
  margin-bottom: 2.2rem;
}

.age-panel--text_description {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: hsl(200, 15%, 15%);
  font-weight: 400;
}

.age-panel--check_row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  background-color: hsl(40, 30%, 90%);
  padding: 0.8rem 1rem;
  border-left: 4px solid hsl(195, 70%, 45%);
}

.age-panel--input_checkbox {
  width: 20px;
  height: 20px;
  accent-color: hsl(15, 80%, 55%);
  margin: 0;
}

.age-panel--label_check {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(200, 15%, 15%);
  flex: 1;
}

.age-panel--check_icon {
  color: hsl(195, 70%, 45%);
  font-size: 1.3rem;
  opacity: 0.7;
}

.age-panel--actions_group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.age-panel--button_primary {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  border: 2px solid hsl(200, 15%, 15%);
  padding: 0.9rem 1.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  flex: 2;
  min-width: 180px;
  transition: all 0.2s;
  box-shadow: 4px 4px 0 hsl(200, 15%, 15%);
}

.age-panel--button_primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: hsl(0, 0%, 70%);
  border-color: hsl(0, 0%, 40%);
  box-shadow: none;
  transform: none;
}

.age-panel--button_primary:not(:disabled):hover {
  background-color: hsl(15, 80%, 45%);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 hsl(200, 15%, 15%);
}

.age-panel--button_secondary {
  background-color: transparent;
  color: hsl(200, 15%, 15%);
  border: 2px solid hsl(200, 15%, 15%);
  padding: 0.9rem 1.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  cursor: pointer;
  flex: 1;
  min-width: 120px;
  box-shadow: 4px 4px 0 hsl(50, 100%, 55%);
}

.age-panel--button_secondary:hover {
  background-color: hsl(200, 15%, 15%);
  color: hsl(40, 30%, 96%);
  box-shadow: 4px 4px 0 hsl(15, 80%, 55%);
}

.age-panel--decor_shape {
  position: absolute;
  bottom: -12px;
  right: -12px;
  font-size: 3rem;
  color: hsl(195, 70%, 45%);
  opacity: 0.5;
  transform: rotate(10deg);
}

@media (max-width: 620px) {
  .age-panel--container_modal {
    padding: 1.5rem 1rem;
    width: 95%;
    box-shadow: 6px 6px 0 hsl(195, 70%, 45%);
  }
  
  .age-panel--header_section {
    gap: 0.5rem;
  }
  
  .age-panel--title_main {
    font-size: 1.6rem;
  }
  
  .age-panel--actions_group {
    flex-direction: column;
  }
  
  .age-panel--button_primary,
  .age-panel--button_secondary {
    width: 100%;
    min-width: auto;
  }
  
  .age-panel--decor_shape {
    font-size: 2rem;
    bottom: -8px;
    right: -8px;
  }
}

@media (max-width: 420px) {
  .age-panel--check_row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .age-panel--label_check {
    font-size: 0.9rem;
    width: calc(100% - 40px);
  }
  
  .age-panel--title_main {
    font-size: 1.4rem;
  }
}

.cookie-banner--panel_float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  z-index: 9998;
  font-family: 'Karla', sans-serif;
}

.cookie-banner--container_horizontal {
  background-color: hsl(200, 15%, 15%);
  border: 3px solid hsl(50, 100%, 55%);
  max-width: 960px;
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: -8px 8px 0 hsl(15, 80%, 55%);
  position: relative;
}

.cookie-banner--content_side {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  flex: 2;
  min-width: 240px;
}

.cookie-banner--icon_large {
  font-size: 2.5rem;
  color: hsl(50, 100%, 55%);
  background-color: hsl(40, 30%, 96%);
  padding: 0.3rem;
  border: 2px solid hsl(15, 80%, 55%);
}

.cookie-banner--text_wrap {
  display: flex;
  flex-direction: column;
}

.cookie-banner--title_small {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.5px;
}

.cookie-banner--description_short {
  font-size: 0.95rem;
  color: hsl(40, 30%, 80%);
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}

.cookie-banner--link_policy {
  color: hsl(50, 100%, 55%);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 2px solid transparent;
  width: fit-content;
}

.cookie-banner--link_policy:hover {
  border-bottom-color: hsl(50, 100%, 55%);
}

.cookie-banner--action_side {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner--button_accept {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  border: 2px solid hsl(40, 30%, 96%);
  padding: 0.7rem 1.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 hsl(195, 70%, 45%);
  transition: all 0.15s;
}

.cookie-banner--button_accept:hover {
  background-color: hsl(15, 80%, 45%);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
}

.cookie-banner--decor_icon {
  font-size: 2rem;
  color: hsl(195, 70%, 45%);
  opacity: 0.4;
  transform: rotate(15deg);
}

@media (max-width: 720px) {
  .cookie-banner--container_horizontal {
    padding: 1.2rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner--content_side {
    justify-content: center;
  }
  
  .cookie-banner--action_side {
    justify-content: center;
  }
  
  .cookie-banner--button_accept {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookie-banner--panel_float {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .cookie-banner--content_side {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .cookie-banner--icon_large {
    font-size: 2rem;
  }
  
  .cookie-banner--title_small {
    font-size: 1.1rem;
  }
  
  .cookie-banner--decor_icon {
    display: none;
  }
}

@media (max-width: 320px) {
  .cookie-banner--description_short {
    font-size: 0.85rem;
  }
  
  .cookie-banner--button_accept {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
  }
}

.site-header--primary_wrap {
  background-color: hsl(200, 15%, 15%);
  border-bottom: 4px solid hsl(15, 80%, 55%);
  font-family: 'Karla', sans-serif;
  width: 100%;
}

.site-header--top_band {
  max-width: 1368px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header--identity_block {
  flex: 0 0 auto;
}

.site-header--logo_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: hsl(40, 30%, 96%);
  text-decoration: none;
}

.site-header--logo_image {
  width: 48px;
  height: 48px;
  border: 2px solid hsl(50, 100%, 55%);
  padding: 4px;
  background-color: hsl(40, 30%, 96%);
}

.site-header--title_text {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: hsl(40, 30%, 96%);
  border-right: 3px solid hsl(15, 80%, 55%);
  padding-right: 1rem;
}

.site-header--feature_block {
  flex: 1 0 auto;
  display: flex;
  justify-content: center;
}

.site-header--feature_link {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  padding: 0.7rem 1.8rem;
  border: 2px solid hsl(40, 30%, 96%);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
  transition: all 0.15s;
}

.site-header--feature_link:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 hsl(195, 70%, 45%);
  background-color: hsl(15, 80%, 45%);
}

.site-header--nav_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-evenly;
  flex: 2 1 auto;
  min-width: 270px;
}

.site-header--nav_item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(40, 30%, 80%);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border: 1px solid transparent;
  transition: all 0.15s;
}

.site-header--nav_item i {
  font-size: 1.1rem;
  color: hsl(50, 100%, 55%);
}

.site-header--nav_item:hover {
  color: hsl(40, 30%, 96%);
  border-bottom: 2px solid hsl(15, 80%, 55%);
}

.site-header--bottom_bar {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0.5rem 2rem 1rem 2rem;
  border-top: 1px solid hsl(200, 15%, 25%);
}

.site-header--message_upper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.site-header--badge_small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(40, 30%, 80%);
  font-size: 0.9rem;
  text-transform: uppercase;
  background-color: hsl(200, 15%, 20%);
  padding: 0.3rem 0.8rem;
  border-left: 3px solid hsl(50, 100%, 55%);
}

.site-header--badge_small i {
  color: hsl(15, 80%, 55%);
  font-size: 1rem;
}

.site-header--message_lower {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  background-color: hsl(200, 15%, 12%);
  padding: 0.6rem 1.2rem;
  border-radius: 0;
  border-right: 4px solid hsl(195, 70%, 45%);
}

.site-header--message_lower i {
  font-size: 1.5rem;
  color: hsl(50, 100%, 55%);
}

.site-header--disclaimer_text {
  color: hsl(40, 30%, 90%);
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

.site-header--disclaimer_text strong {
  color: hsl(15, 80%, 55%);
  font-weight: 700;
}

@media (max-width: 920px) {
  .site-header--top_band {
    flex-direction: column;
    align-items: stretch;
  }
  
  .site-header--identity_block {
    text-align: center;
  }
  
  .site-header--logo_link {
    justify-content: center;
  }
  
  .site-header--nav_wrap {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .site-header--top_band {
    padding: 0.8rem 0.1rem;
  }
  
  .site-header--title_text {
    font-size: 1.2rem;
    border-right: none;
    padding-right: 0;
  }
  
  .site-header--feature_link {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    width: 100%;
    justify-content: center;
  }
  
  .site-header--nav_wrap {
    gap: 0.3rem;
  }
  
  .site-header--nav_item {
    font-size: 0.85rem;
    padding: 0.3rem;
  }
  
  .site-header--message_lower {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }
  
  .site-header--disclaimer_text {
    font-size: 0.85rem;
  }
}

@media (max-width: 420px) {
  .site-header--badge_small {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
  }
  
  .site-header--nav_item span {
    display: none;
  }
  
  .site-header--nav_item i {
    font-size: 1.3rem;
  }
  
  .site-header--nav_wrap {
    gap: 0.8rem;
  }
}

@media (max-width: 320px) {
  .site-header--bottom_bar {
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  }
  
  .site-header--message_upper {
    gap: 0.5rem;
  }
  
  .site-header--badge_small {
    width: 100%;
    justify-content: center;
  }
}

.welcome-area--full_section {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: 'Karla', sans-serif;
  background-color: hsl(200, 15%, 10%);
}

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

.welcome-area--background_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.welcome-area--overlay_shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.welcome-area--rain_animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.welcome-area--rain_animation::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(217, 96, 58, 0.15) 4px,
    rgba(217, 96, 58, 0.1) 8px
  );
  animation: rain-shower 8s linear infinite;
  transform: rotate(5deg);
}

.welcome-area--rain_animation::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 8px,
    rgba(255, 215, 0, 0.08) 8px,
    rgba(255, 215, 0, 0.05) 16px
  );
  animation: rain-shower-slow 12s linear infinite;
  opacity: 0.6;
}

@keyframes rain-shower {
  0% {
    transform: translateY(0) rotate(5deg);
  }
  100% {
    transform: translateY(50%) rotate(5deg);
  }
}

@keyframes rain-shower-slow {
  0% {
    transform: translateY(-10%) rotate(2deg);
  }
  100% {
    transform: translateY(60%) rotate(2deg);
  }
}

.welcome-area--content_wrap {
  position: relative;
  z-index: 4;
  max-width: 1368px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.welcome-area--header_block {
  grid-column: 1 / 2;
}

.welcome-area--main_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: hsl(40, 30%, 96%);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  text-shadow: 4px 4px 0 hsl(15, 80%, 55%);
}

.welcome-area--title_accent {
  color: hsl(50, 100%, 55%);
  display: block;
  font-size: 3rem;
  border-left: 6px solid hsl(15, 80%, 55%);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.welcome-area--description_text {
  font-size: 1.3rem;
  color: hsl(40, 30%, 90%);
  max-width: 500px;
  line-height: 1.4;
  border-bottom: 3px solid hsl(195, 70%, 45%);
  padding-bottom: 1.5rem;
}

.welcome-area--features_grid {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.feature-item--container {
  background-color: rgba(30, 40, 45, 0.8);
  backdrop-filter: blur(2px);
  border: 2px solid hsl(15, 80%, 55%);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
  transition: transform 0.2s;
}

.feature-item--container:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 hsl(195, 70%, 45%);
}

.feature-item--icon {
  font-size: 2.2rem;
  color: hsl(50, 100%, 55%);
  margin-bottom: 0.8rem;
}

.feature-item--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0 0 0.3rem 0;
}

.feature-item--text {
  font-size: 0.9rem;
  color: hsl(40, 30%, 80%);
  margin: 0;
}

.welcome-area--action_links {
  grid-column: 2 / 3;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 1rem;
}

.welcome-area--link_primary {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  padding: 0.9rem 2rem;
  border: 2px solid hsl(40, 30%, 96%);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
  transition: all 0.15s;
}

.welcome-area--link_primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 hsl(195, 70%, 45%);
  background-color: hsl(15, 80%, 45%);
}

.welcome-area--link_secondary {
  background-color: transparent;
  color: hsl(40, 30%, 96%);
  border: 2px solid hsl(50, 100%, 55%);
  padding: 0.9rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 3px 3px 0 hsl(15, 80%, 55%);
}

.welcome-area--link_secondary:hover {
  background-color: hsl(50, 100%, 55%);
  color: hsl(200, 15%, 15%);
  box-shadow: 5px 5px 0 hsl(15, 80%, 55%);
}

@media (max-width: 960px) {
  .welcome-area--content_wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .welcome-area--header_block {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .welcome-area--description_text {
    margin: 0 auto;
  }
  
  .welcome-area--main_title {
    font-size: 3rem;
  }
  
  .welcome-area--title_accent {
    font-size: 2.2rem;
  }
  
  .welcome-area--features_grid {
    grid-column: 1 / -1;
  }
  
  .welcome-area--action_links {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .welcome-area--content_wrap {
    padding: 3rem 1rem;
  }
  
  .welcome-area--main_title {
    font-size: 2.2rem;
    text-shadow: 3px 3px 0 hsl(15, 80%, 55%);
  }
  
  .welcome-area--title_accent {
    font-size: 1.8rem;
    border-left-width: 4px;
  }
  
  .welcome-area--description_text {
    font-size: 1rem;
  }
  
  .welcome-area--features_grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
  }
  
  .feature-item--container {
    padding: 0.8rem;
  }
  
  .feature-item--icon {
    font-size: 1.8rem;
  }
  
  .feature-item--title {
    font-size: 1rem;
  }
  
  .feature-item--text {
    font-size: 0.8rem;
  }
  
  .welcome-area--link_primary,
  .welcome-area--link_secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  
  .welcome-area--action_links {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .welcome-area--rain_animation::before,
  .welcome-area--rain_animation::after {
    animation: none;
    opacity: 0.2;
  }
}

@media (max-width: 420px) {
  .welcome-area--main_title {
    font-size: 1.8rem;
  }
  
  .welcome-area--title_accent {
    font-size: 1.5rem;
  }
  
  .welcome-area--features_grid {
    grid-template-columns: 1fr;
  }
}

.games-showcase--full_width {
  background-color: hsl(200, 15%, 12%);
  padding: 4rem 0;
  border-top: 6px solid hsl(15, 80%, 55%);
  border-bottom: 6px solid hsl(195, 70%, 45%);
  font-family: 'Karla', sans-serif;
}

.games-showcase--container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 2rem;
}

.games-showcase--section_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0 0 2.5rem 0;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-left: 8px solid hsl(50, 100%, 55%);
  padding-left: 1.5rem;
}

.games-showcase--title_mark {
  color: hsl(15, 80%, 55%);
  background-color: hsl(40, 30%, 96%);
  padding: 0.3rem 1rem;
  font-size: 2rem;
  border: 3px solid hsl(195, 70%, 45%);
  transform: rotate(-2deg);
}

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

.game-tile--bauhaus_card {
  background-color: hsl(40, 30%, 96%);
  border: 4px solid hsl(200, 15%, 15%);
  box-shadow: 8px 8px 0 hsl(15, 80%, 55%);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.game-tile--bauhaus_card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 hsl(195, 70%, 45%);
}

.game-tile--preview_image {
  width: 100%;
  height: 200px;
  border-bottom: 3px solid hsl(200, 15%, 15%);
  display: block;
}

.game-tile--content_wrap {
  padding: 1.2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-tile--name_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0;
  line-height: 1.2;
  border-bottom: 3px solid hsl(50, 100%, 55%);
  padding-bottom: 0.5rem;
}

.game-tile--play_link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  padding: 0.8rem 1.2rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid hsl(200, 15%, 15%);
  box-shadow: 4px 4px 0 hsl(195, 70%, 45%);
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
}

.game-tile--play_link:hover {
  background-color: hsl(15, 80%, 45%);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 hsl(195, 70%, 45%);
}

.game-tile--play_link i {
  font-size: 1.4rem;
  color: hsl(50, 100%, 55%);
}

.game-tile--play_link span {
  flex: 1;
}

.game-tile--link_icon {
  background-color: hsl(200, 15%, 15%);
  padding: 0.3rem;
  border-radius: 0;
}

.games-showcase--more_wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.games-showcase--more_link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: transparent;
  color: hsl(40, 30%, 96%);
  padding: 0.8rem 2.5rem;
  border: 3px solid hsl(50, 100%, 55%);
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 hsl(15, 80%, 55%);
  transition: all 0.15s;
}

.games-showcase--more_link:hover {
  background-color: hsl(50, 100%, 55%);
  color: hsl(200, 15%, 15%);
  box-shadow: 8px 8px 0 hsl(15, 80%, 55%);
  transform: translate(-2px, -2px);
}

@media (max-width: 1200px) {
  .games-showcase--grid_six {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .games-showcase--grid_six {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
  }
  
  .games-showcase--section_title {
    font-size: 2.5rem;
    padding-left: 1rem;
  }
  
  .games-showcase--title_mark {
    font-size: 1.5rem;
  }
  
  .game-tile--name_title {
    font-size: 1.5rem;
  }
}

@media (max-width: 620px) {
  .games-showcase--full_width {
    padding: 2.5rem 0;
  }
  
  .games-showcase--container {
    padding: 0 1rem;
  }
  
  .games-showcase--grid_six {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .game-tile--bauhaus_card {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .game-tile--bauhaus_card:hover {
    transform: translate(-1px, -1px);
  }
  
  .game-tile--play_link {
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 420px) {
  .games-showcase--section_title {
    font-size: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .game-tile--preview_image {
    height: 160px;
  }
  
  .game-tile--play_link {
    flex-wrap: wrap;
  }
}

@media (max-width: 320px) {
  .games-showcase--more_link {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
  }
}

.how-it-works--massive_section {
  background-color: hsl(40, 30%, 96%);
  padding: 5rem 0;
  font-family: 'Karla', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 4px solid hsl(195, 70%, 45%);
  border-bottom: 4px solid hsl(15, 80%, 55%);
}

.how-it-works--massive_section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: hsl(50, 100%, 55%);
  opacity: 0.1;
  transform: rotate(45deg);
  z-index: 1;
}

.how-it-works--container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.how-it-works--header_complex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}

.how-it-works--title_wrap {
  border-left: 8px solid hsl(15, 80%, 55%);
  padding-left: 2rem;
}

.how-it-works--badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: hsl(195, 70%, 45%);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 1rem;
}

.how-it-works--main_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: hsl(200, 15%, 15%);
  margin: 0;
}

.how-it-works--title_accent {
  display: block;
  color: hsl(15, 80%, 55%);
  background-color: hsl(200, 15%, 15%);
  padding: 0.2rem 1rem 0.2rem 2rem;
  margin-left: -2rem;
  margin-top: 0.5rem;
  width: fit-content;
}

.how-it-works--intro_text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-it-works--paragraph {
  font-size: 1.2rem;
  line-height: 1.5;
  color: hsl(200, 15%, 20%);
  margin: 0;
  max-width: 500px;
}

.how-it-works--stats_mini {
  display: flex;
  gap: 2rem;
  border-top: 3px solid hsl(50, 100%, 55%);
  padding-top: 1.5rem;
}

.stats-mini--item {
  display: flex;
  flex-direction: column;
}

.stats-mini--number {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(195, 70%, 45%);
  line-height: 1;
}

.stats-mini--label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: hsl(200, 15%, 40%);
}

.how-it-works--steps_showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-block--horizontal_left {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  background-color: hsl(200, 15%, 15%);
  padding: 2rem;
  border: 4px solid hsl(15, 80%, 55%);
  box-shadow: 10px 10px 0 hsl(195, 70%, 45%);
  align-items: center;
  margin-bottom: 1rem;
}

.step-block--number_giant {
  font-family: 'Space Mono', monospace;
  font-size: 5rem;
  font-weight: 800;
  color: hsl(50, 100%, 55%);
  line-height: 1;
  opacity: 0.8;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.step-block--content_middle {
  padding: 1rem;
  border-left: 3px solid hsl(50, 100%, 55%);
  border-right: 3px solid hsl(50, 100%, 55%);
}

.step-block--icon_primary {
  font-size: 3rem;
  color: hsl(15, 80%, 55%);
  margin-bottom: 1rem;
}

.step-block--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(60, 15%, 25%);
  margin: 0 0 1rem 0;
}

.step-block--text {
  font-size: 1rem;
  color: hsl(40, 96%, 31%);
  margin: 0 0 1rem 0;
  max-width: 350px;
}

.step-block--decor_line {
  width: 100px;
  height: 4px;
  background-color: hsl(195, 70%, 45%);
  margin-top: 1rem;
}

.step-block--image_placeholder {
  background-color: hsl(40, 30%, 96%);
  border: 3px solid hsl(50, 100%, 55%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 150px;
}

.step-block--image_placeholder i {
  font-size: 3rem;
  color: hsl(195, 70%, 45%);
}

.step-block--image_placeholder span {
  font-weight: 600;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
}

.step-block--vertical_right {
  grid-column: 2 / 3;
  background-color: hsl(40, 30%, 90%);
  border: 4px solid hsl(195, 70%, 45%);
  padding: 2rem;
  box-shadow: -8px 8px 0 hsl(15, 80%, 55%);
  position: relative;
  top: -2rem;
}

.step-block--vertical_content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-block--number_medium {
  font-family: 'Space Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(15, 80%, 55%);
  line-height: 1;
}

.step-block--icon_secondary {
  font-size: 2.5rem;
  color: hsl(195, 70%, 45%);
}

.step-block--vertical_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0;
}

.step-block--vertical_text {
  font-size: 1rem;
  color: hsl(200, 15%, 30%);
  margin: 0;
}

.step-block--feature_list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.step-block--feature_list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.step-block--feature_list i {
  color: hsl(50, 100%, 55%);
}

.step-block--horizontal_right {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  background-color: hsl(40, 30%, 96%);
  padding: 2rem;
  border: 4px solid hsl(195, 70%, 45%);
  box-shadow: -10px 10px 0 hsl(15, 80%, 55%);
  align-items: center;
  margin-top: 1rem;
}

.step-block--content_middle.reverse {
  border-left: 3px solid hsl(15, 80%, 55%);
  border-right: 3px solid hsl(15, 80%, 55%);
}

.step-block--icon_tertiary {
  font-size: 3rem;
  color: hsl(195, 70%, 45%);
  margin-bottom: 1rem;
}

.step-block--badge_container {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.step-badge {
  background-color: hsl(200, 15%, 15%);
  color: hsl(40, 30%, 96%);
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  border-left: 3px solid hsl(50, 100%, 55%);
}

.step-badge i {
  color: hsl(50, 100%, 55%);
}

.step-block--image_placeholder.alt {
  background-color: hsl(200, 15%, 15%);
  border-color: hsl(15, 80%, 55%);
}

.step-block--image_placeholder.alt i {
  color: hsl(50, 100%, 55%);
}

.step-block--image_placeholder.alt span {
  color: hsl(40, 30%, 96%);
}

.step-block--number_giant.alt {
  color: hsl(195, 70%, 45%);
}

.step-block--feature_grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  background-color: hsl(200, 15%, 15%);
  padding: 2.5rem 2rem;
  border: 4px solid hsl(50, 100%, 55%);
  box-shadow: 10px 10px 0 hsl(15, 80%, 55%);
}

.feature-grid--item {
  background-color: hsl(40, 30%, 96%);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 2px solid hsl(195, 70%, 45%);
  position: relative;
}

.feature-grid--item::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  background-color: hsl(15, 80%, 55%);
  z-index: -1;
}

.feature-grid--icon {
  font-size: 2.5rem;
  color: hsl(15, 80%, 55%);
  margin-bottom: 0.8rem;
}

.feature-grid--item h4 {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0 0 0.5rem 0;
}

.feature-grid--item p {
  font-size: 0.9rem;
  color: hsl(200, 15%, 40%);
  margin: 0;
}

.how-it-works--footer_banner {
  margin-top: 4rem;
  background-color: hsl(200, 15%, 15%);
  padding: 3rem;
  border: 4px solid hsl(15, 80%, 55%);
  box-shadow: 12px 12px 0 hsl(195, 70%, 45%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner--content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 2;
  min-width: 220px;
}

.banner--quote {
  font-size: 3rem;
  color: hsl(50, 100%, 55%);
  opacity: 0.5;
}

.banner--text {
  font-size: 1.3rem;
  font-weight: 500;
  color: hsl(40, 30%, 96%);
  margin: 0;
  font-style: italic;
  border-left: 3px solid hsl(15, 80%, 55%);
  padding-left: 1.5rem;
}

.banner--actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner--button_primary {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  padding: 1rem 2rem;
  border: 2px solid hsl(40, 30%, 96%);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
}

.banner--button_primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 hsl(195, 70%, 45%);
}

.banner--button_secondary {
  background-color: transparent;
  color: hsl(40, 30%, 96%);
  border: 2px solid hsl(50, 100%, 55%);
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
}

.banner--button_secondary:hover {
  background-color: hsl(50, 100%, 55%);
  color: hsl(200, 15%, 15%);
}

@media (max-width: 960px) {
  .how-it-works--header_complex {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .how-it-works--main_title {
    font-size: 3rem;
  }
  
  .step-block--horizontal_left,
  .step-block--horizontal_right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .step-block--number_giant {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 3rem;
  }
  
  .step-block--vertical_right {
    grid-column: 1 / -1;
    top: 0;
  }
  
  .step-block--content_middle {
    border-left: none;
    border-right: none;
    border-top: 3px solid hsl(50, 100%, 55%);
    border-bottom: 3px solid hsl(50, 100%, 55%);
  }
  
  .step-block--image_placeholder {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .how-it-works--footer_banner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0.3rem;
  }
  
  .banner--content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .banner--text {
    border-left: none;
    border-top: 3px solid hsl(15, 80%, 55%);
    padding-left: 0;
    padding-top: 1rem;
  }
}

@media (max-width: 620px) {
  .how-it-works--massive_section {
    padding: 3rem 0;
  }
  
  .how-it-works--container {
    padding: 0 1rem;
  }
  
  .how-it-works--main_title {
    font-size: 2.2rem;
  }
  
  .how-it-works--title_accent {
    margin-left: -1rem;
    padding: 0.2rem 1rem;
  }
  
  .how-it-works--stats_mini {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .step-block--feature_grid {
    grid-template-columns: 1fr;
  }
  
  .banner--actions {
    flex-direction: column;
    width: 100%;
  }
  
  .banner--button_primary,
  .banner--button_secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .step-block--badge_container {
    flex-direction: column;
  }
  
  .feature-grid--item {
    padding: 1rem;
  }
}

.troubleshoot--help_section {
  background-color: hsl(200, 15%, 12%);
  padding: 5rem 0;
  font-family: 'Karla', sans-serif;
  position: relative;
  border-top: 4px solid hsl(50, 100%, 55%);
  border-bottom: 4px solid hsl(195, 70%, 45%);
}

.troubleshoot--help_section::after {
  content: '⚡⚡⚡';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  color: hsl(15, 80%, 55%);
  opacity: 0.1;
  font-family: 'Space Mono', monospace;
}

.troubleshoot--container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.troubleshoot--header_area {
  margin-bottom: 3.5rem;
  max-width: 800px;
}

.troubleshoot--title_block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.troubleshoot--title_icon {
  font-size: 4rem;
  color: hsl(50, 100%, 55%);
  background-color: hsl(200, 15%, 20%);
  padding: 0.5rem;
  border: 3px solid hsl(15, 80%, 55%);
  transform: rotate(-5deg);
}

.troubleshoot--main_title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0;
  line-height: 1;
  border-left: 6px solid hsl(195, 70%, 45%);
  padding-left: 1.5rem;
}

.troubleshoot--title_accent {
  display: block;
  color: hsl(15, 80%, 55%);
  font-size: 2.5rem;
  margin-top: 0.3rem;
}

.troubleshoot--description {
  font-size: 1.3rem;
  color: hsl(40, 30%, 80%);
  margin: 0 0 0 5.5rem;
  max-width: 600px;
  border-bottom: 2px solid hsl(50, 100%, 55%);
  padding-bottom: 1rem;
}

.troubleshoot--grid_complex {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.troubleshoot--card_large {
  grid-row: span 2;
  background-color: hsl(40, 30%, 96%);
  border: 4px solid hsl(15, 80%, 55%);
  padding: 2rem;
  box-shadow: 12px 12px 0 hsl(195, 70%, 45%);
  position: relative;
}

.card-issue--corner_sign {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 4rem;
  font-weight: 800;
  color: hsl(50, 100%, 55%);
  opacity: 0.3;
  z-index: 1;
}

.card-issue--icon_main {
  font-size: 3.5rem;
  color: hsl(15, 80%, 55%);
  margin-bottom: 1.5rem;
}

.card-issue--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0 0 1.5rem 0;
  border-bottom: 3px solid hsl(195, 70%, 45%);
  padding-bottom: 0.5rem;
}

.card-issue--list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.card-issue--list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: hsl(200, 15%, 20%);
}

.card-issue--list li i:first-child {
  font-size: 1.2rem;
}

.card-issue--list li i.bx-x-circle {
  color: hsl(15, 80%, 55%);
}

.card-issue--list li i.bx-check-circle {
  color: hsl(195, 70%, 45%);
}

.card-issue--footer {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  border-top: 2px solid hsl(50, 100%, 55%);
  padding-top: 1rem;
}

.card-issue--footer i {
  font-size: 2rem;
  color: hsl(200, 15%, 40%);
}

.troubleshoot--card_medium {
  background-color: hsl(200, 15%, 20%);
  border: 3px solid hsl(195, 70%, 45%);
  padding: 1.5rem;
  box-shadow: -8px 8px 0 hsl(15, 80%, 55%);
}

.card-issue--icon_medium {
  font-size: 2.5rem;
  color: hsl(50, 100%, 55%);
  margin-bottom: 1rem;
}

.card-issue--title_small {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0 0 1rem 0;
}

.card-issue--step {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.step-number {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(15, 80%, 55%);
  background-color: hsl(40, 30%, 96%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid hsl(50, 100%, 55%);
}

.card-issue--step p {
  color: hsl(40, 30%, 90%);
  margin: 0;
  font-size: 0.95rem;
}

.card-issue--link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(50, 100%, 55%);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  border-bottom: 2px solid transparent;
}

.card-issue--link:hover {
  border-bottom-color: hsl(50, 100%, 55%);
}

.card-issue--text {
  color: hsl(40, 30%, 80%);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
}

.card-issue--badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.device-badge {
  background-color: hsl(200, 15%, 30%);
  color: hsl(40, 30%, 96%);
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-left: 3px solid hsl(195, 70%, 45%);
}

.device-badge i {
  color: hsl(50, 100%, 55%);
}

.troubleshoot--card_wide {
  grid-column: span 2;
  background-color: hsl(40, 30%, 96%);
  border: 4px solid hsl(50, 100%, 55%);
  padding: 1.5rem;
  box-shadow: 8px 8px 0 hsl(15, 80%, 55%);
}

.game-specific--content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.game-specific--icon {
  font-size: 3rem;
  color: hsl(195, 70%, 45%);
}

.game-specific--text {
  flex: 1;
  min-width: 200px;
}

.game-specific--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0 0 0.3rem 0;
}

.game-specific--description {
  color: hsl(200, 15%, 30%);
  margin: 0;
  font-size: 0.95rem;
}

.game-specific--button {
  background-color: hsl(15, 80%, 55%);
  color: hsl(40, 30%, 96%);
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid hsl(200, 15%, 15%);
  box-shadow: 4px 4px 0 hsl(195, 70%, 45%);
}

.game-specific--button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 hsl(195, 70%, 45%);
}

.troubleshoot--card_vertical {
  background-color: hsl(195, 70%, 45%);
  border: 4px solid hsl(40, 30%, 96%);
  padding: 1.5rem;
  box-shadow: -8px -8px 0 hsl(15, 80%, 55%);
}

.quick-fixes--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-fixes--title i {
  font-size: 2rem;
  color: hsl(40, 30%, 96%);
}

.quick-fixes--item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  background-color: hsl(40, 30%, 96%);
  padding: 0.6rem 1rem;
  border: 2px solid hsl(200, 15%, 15%);
}

.quick-fixes--item i {
  font-size: 1.2rem;
  color: hsl(15, 80%, 55%);
}

.quick-fixes--item span {
  font-weight: 500;
  color: hsl(200, 15%, 15%);
}

.troubleshoot--card_contact {
  grid-column: 3 / 4;
  background-color: hsl(200, 15%, 15%);
  border: 4px solid hsl(50, 100%, 55%);
  padding: 2rem 1.5rem;
  box-shadow: 8px 8px 0 hsl(15, 80%, 55%);
  text-align: center;
}

.contact--icon {
  font-size: 3.5rem;
  color: hsl(15, 80%, 55%);
  margin-bottom: 1rem;
}

.contact--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin: 0 0 0.8rem 0;
}

.contact--text {
  color: hsl(40, 30%, 80%);
  font-size: 0.95rem;
  margin: 0 0 1.5rem 0;
}

.contact--email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsl(40, 30%, 96%);
  color: hsl(200, 15%, 15%);
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid hsl(195, 70%, 45%);
  margin-bottom: 1rem;
  word-break: break-all;
}

.contact--email i {
  color: hsl(15, 80%, 55%);
  font-size: 1.2rem;
}

.contact--hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(40, 30%, 70%);
  font-size: 0.9rem;
}

.contact--hours i {
  color: hsl(50, 100%, 55%);
}

.troubleshoot--footer_links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-evenly;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 3px solid hsl(15, 80%, 55%);
}

.footer-links--item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links--item i {
  font-size: 1.5rem;
  color: hsl(50, 100%, 55%);
}

.footer-links--item a {
  color: hsl(40, 30%, 96%);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}

.footer-links--item a:hover {
  border-bottom-color: hsl(15, 80%, 55%);
}

@media (max-width: 1024px) {
  .troubleshoot--grid_complex {
    grid-template-columns: 1fr 1fr;
  }
  
  .troubleshoot--card_large {
    grid-column: span 2;
    grid-row: auto;
  }
  
  .troubleshoot--card_contact {
    grid-column: span 2;
  }
  
  .troubleshoot--card_wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .troubleshoot--grid_complex {
    grid-template-columns: 1fr;
  }
  
  .troubleshoot--card_large,
  .troubleshoot--card_medium,
  .troubleshoot--card_wide,
  .troubleshoot--card_vertical,
  .troubleshoot--card_contact {
    grid-column: 1 / -1;
  }
  
  .troubleshoot--main_title {
    font-size: 2.5rem;
  }
  
  .troubleshoot--title_accent {
    font-size: 2rem;
  }
  
  .troubleshoot--description {
    margin-left: 0;
    font-size: 1.1rem;
  }
  
  .game-specific--content {
    flex-direction: column;
    text-align: center;
  }
  
  .troubleshoot--footer_links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 620px) {
  .troubleshoot--container {
    padding: 0 1rem;
  }
  
  .troubleshoot--title_block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  
  .troubleshoot--title_icon {
    font-size: 3rem;
  }
  
  .troubleshoot--main_title {
    font-size: 2rem;
    border-left-width: 4px;
    padding-left: 1rem;
  }
  
  .troubleshoot--title_accent {
    font-size: 1.6rem;
  }
  
  .card-issue--title {
    font-size: 1.8rem;
  }
  
  .contact--email {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 420px) {
  .card-issue--footer {
    flex-wrap: wrap;
  }
  
  .quick-fixes--item {
    flex-wrap: wrap;
  }
  
  .game-specific--button {
    width: 100%;
    justify-content: center;
  }
}

.responsible-play--massive_section {
  background-color: hsl(40, 30%, 96%);
  padding: 5rem 0;
  font-family: 'Karla', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 4px solid hsl(195, 70%, 45%);
  border-bottom: 4px solid hsl(15, 80%, 55%);
}

.responsible-play--massive_section::before {
  content: '18+';
  position: absolute;
  bottom: -30px;
  right: -30px;
  font-size: 15rem;
  font-weight: 800;
  color: hsl(15, 80%, 55%);
  opacity: 0.03;
  font-family: 'Archivo Narrow', sans-serif;
  transform: rotate(-10deg);
  pointer-events: none;
}

.responsible-play--container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.responsible-play--header_mini {
  margin-bottom: 3rem;
  border-left: 8px solid hsl(15, 80%, 55%);
  padding-left: 2rem;
}

.responsible-play--badge {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: hsl(195, 70%, 45%);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 0.8rem;
}

.responsible-play--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0;
  line-height: 1.1;
}

.responsible-play--title_accent {
  display: block;
  color: hsl(15, 80%, 55%);
  font-size: 2.5rem;
  margin-top: 0.2rem;
  border-bottom: 4px solid hsl(50, 100%, 55%);
  padding-bottom: 0.3rem;
  width: fit-content;
}

.responsible-play--double_block {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}

.responsible-play--text_block {
  background-color: hsl(200, 15%, 15%);
  padding: 2.5rem 2rem;
  border: 4px solid hsl(195, 70%, 45%);
  box-shadow: 15px 15px 0 hsl(15, 80%, 55%);
  position: relative;
}

.text-block--decor_line {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-top: 4px solid hsl(50, 100%, 55%);
  border-right: 4px solid hsl(50, 100%, 55%);
  opacity: 0.3;
}

.text-block--paragraph {
  color: hsl(40, 30%, 90%);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
}

.text-block--dropcap {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  color: hsl(50, 100%, 55%);
  text-shadow: 3px 3px 0 hsl(15, 80%, 55%);
}

.text-block--link {
  color: hsl(50, 100%, 55%);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
}

.text-block--link:hover {
  border-bottom-color: hsl(50, 100%, 55%);
  background-color: hsl(200, 15%, 25%);
}

.text-block--link_external {
  color: hsl(15, 80%, 55%);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px dashed hsl(15, 80%, 55%);
}

.text-block--link_external:hover {
  color: hsl(40, 30%, 96%);
  background-color: hsl(15, 80%, 55%);
}

.text-block--quote_wrap {
  background-color: hsl(200, 15%, 20%);
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 6px solid hsl(50, 100%, 55%);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: hsl(15, 80%, 55%);
  opacity: 0.5;
}

.text-block--quote {
  font-size: 1.1rem;
  font-style: italic;
  color: hsl(40, 30%, 96%);
  margin: 0;
}

.text-block--resources_mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  border-top: 2px solid hsl(195, 70%, 45%);
  padding-top: 1.5rem;
}

.resources-mini--item {
  background-color: hsl(200, 15%, 25%);
  color: hsl(40, 30%, 96%);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(50, 100%, 55%);
}

.resources-mini--item i {
  color: hsl(15, 80%, 55%);
}

.responsible-play--partners_block {
  background-color: hsl(40, 30%, 96%);
  border: 4px solid hsl(15, 80%, 55%);
  padding: 2rem 1.5rem;
  box-shadow: -12px 12px 0 hsl(195, 70%, 45%);
  position: relative;
  top: 2rem;
}

.partners-block--title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(200, 15%, 15%);
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid hsl(195, 70%, 45%);
  padding-bottom: 0.8rem;
}

.partners-block--title span {
  font-size: 1rem;
  color: hsl(15, 80%, 55%);
  font-family: 'Karla', sans-serif;
  text-transform: none;
  margin-top: 0.2rem;
}

.partners-block--grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.partners-block--item {
  display: block;
  width: 235px;
  height: 62px;
  background-color: hsl(197, 95%, 26%);
  border: 2px solid hsl(200, 15%, 30%);
  transition: all 0.15s;
  overflow: hidden;
}

.partners-block--item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 hsl(195, 70%, 45%);
  border-color: hsl(15, 80%, 55%);
}

.partners-block--image {
  padding: 6px;
  width: 100%;
  height: 58px;
  object-fit: contain;
  display: block;
}

.partners-block--age_highlight {
  width: 235px;
  height: 58px;
  background-color: hsl(15, 80%, 55%);
  border: 3px solid hsl(200, 15%, 15%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: 0 0 0 3px hsl(50, 100%, 55%);
  transform: scale(1.05);
}

.age-highlight--number {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: hsl(40, 30%, 96%);
  line-height: 1;
}

.age-highlight--plus {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: hsl(200, 15%, 15%);
  line-height: 1;
}

.age-highlight--text {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  margin-left: 0.3rem;
  background-color: hsl(200, 15%, 15%);
  padding: 0.2rem 0.4rem;
}

.partners-block--footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: hsl(200, 15%, 40%);
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
  border-top: 1px solid hsl(200, 15%, 80%);
  padding-top: 1rem;
}

.partners-block--footnote i {
  color: hsl(15, 80%, 55%);
}

.responsible-play--footer_note {
  margin-top: 4rem;
  background-color: hsl(200, 15%, 15%);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border: 4px solid hsl(50, 100%, 55%);
  box-shadow: 8px 8px 0 hsl(195, 70%, 45%);
}

.responsible-play--footer_note i {
  font-size: 2.5rem;
  color: hsl(15, 80%, 55%);
}

.responsible-play--footer_note p {
  color: hsl(40, 30%, 96%);
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
}

.responsible-play--footer_note a {
  color: hsl(50, 100%, 55%);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
}

.responsible-play--footer_note a:hover {
  border-bottom-color: hsl(50, 100%, 55%);
}

@media (max-width: 960px) {
  .responsible-play--double_block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .responsible-play--partners_block {
    top: 0;
  }
  
  .responsible-play--title {
    font-size: 2.5rem;
  }
  
  .responsible-play--title_accent {
    font-size: 2rem;
  }
}

@media (max-width: 760px) {
  .partners-block--grid {
    justify-content: space-around;
  }
  
  .partners-block--item,
  .partners-block--age_highlight {
    width: 100%;
    max-width: 235px;
  }
}

@media (max-width: 620px) {
  .responsible-play--container {
    padding: 0 0.12rem;
  }
  
  .responsible-play--header_mini {
    padding-left: 1rem;
    border-left-width: 4px;
  }
  
  .responsible-play--title {
    font-size: 2rem;
  }
  
  .responsible-play--title_accent {
    font-size: 1.6rem;
  }
  
  .text-block--quote_wrap {
    flex-direction: column;
  }
  
  .text-block--resources_mini {
    flex-direction: column;
  }
  
  .responsible-play--footer_note {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 420px) {
  .responsible-play--text_block {
    padding: 2rem 0.3rem;
  }

  .text-block--dropcap {
    font-size: 3rem;
  }
  
  .partners-block--age_highlight {
    transform: scale(1);
  }
  
  .age-highlight--number {
    font-size: 2.2rem;
  }
}

.site-footer--unique_container {
  background-color: hsl(200, 15%, 8%);
  font-family: 'Karla', sans-serif;
  position: relative;
  border-top: 6px solid hsl(15, 80%, 55%);
  overflow: hidden;
  padding: 3rem 0 1rem 0;
}

.site-footer--background_decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(217, 96, 58, 0.03) 20px,
    rgba(217, 96, 58, 0.03) 40px
  );
  pointer-events: none;
  z-index: 1;
}

.site-footer--main_content {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-block--identity_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: hsl(200, 15%, 12%);
  padding: 1.5rem 2rem;
  border-left: 8px solid hsl(50, 100%, 55%);
  border-bottom: 4px solid hsl(195, 70%, 45%);
  transform: skewX(-3deg);
  margin-left: -1rem;
}

.identity-section--logo_wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: skewX(3deg);
}

.identity-section--logo_icon {
  font-size: 3rem;
  color: hsl(15, 80%, 55%);
  background-color: hsl(40, 30%, 96%);
  padding: 0.5rem;
  border: 3px solid hsl(50, 100%, 55%);
  transform: rotate(-5deg);
}

.identity-section--logo_text {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: hsl(40, 30%, 96%);
  letter-spacing: -0.02em;
}

.identity-section--message {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: hsl(200, 15%, 20%);
  padding: 0.8rem 1.5rem;
  border-right: 4px solid hsl(15, 80%, 55%);
  transform: skewX(3deg);
}

.identity-section--message i {
  font-size: 1.8rem;
  color: hsl(50, 100%, 55%);
}

.identity-section--message p {
  color: hsl(40, 30%, 90%);
  margin: 0;
  font-size: 0.95rem;
}

.footer-block--links_maze {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2rem;
  background-color: hsl(200, 15%, 10%);
  padding: 2rem;
  border: 3px solid hsl(195, 70%, 45%);
  box-shadow: inset 0 0 0 2px hsl(15, 80%, 55%);
  position: relative;
}

.links-maze--group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.links-maze--group_primary {
  border-right: 2px dashed hsl(50, 100%, 55%);
  padding-right: 1.5rem;
}

.links-maze--group_secondary {
  border-right: 2px dashed hsl(15, 80%, 55%);
  padding-right: 1.5rem;
}

.links-maze--item {
  color: hsl(40, 30%, 80%);
  text-decoration: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.15s;
}

.links-maze--item i {
  color: hsl(50, 100%, 55%);
  font-size: 1.1rem;
  width: 20px;
}

.links-maze--item:hover {
  color: hsl(40, 30%, 96%);
  border-bottom-color: hsl(15, 80%, 55%);
  transform: translateX(5px);
}

.links-maze--group_tertiary {
  background-color: hsl(200, 15%, 15%);
  padding: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border: 3px solid hsl(50, 100%, 55%);
  transform: rotate(1deg);
  grid-column: 3 / 4;
}

.links-maze--group_tertiary i {
  font-size: 2.2rem;
  color: hsl(15, 80%, 55%);
}

.links-maze--responsible_text {
  color: hsl(40, 30%, 96%);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.3;
  max-width: 200px;
}

.footer-block--geo_panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background-color: hsl(40, 30%, 96%);
  padding: 1.5rem 2rem;
  border: 4px solid hsl(15, 80%, 55%);
  box-shadow: -8px 8px 0 hsl(195, 70%, 45%);
  margin-bottom: 1rem;
}

.geo-panel--map_marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem;
  background-color: hsl(200, 15%, 15%);
  border: 2px solid hsl(50, 100%, 55%);
}

.geo-panel--map_marker i {
  font-size: 2rem;
  color: hsl(15, 80%, 55%);
}

.geo-panel--label {
  color: hsl(40, 30%, 96%);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.geo-panel--address_block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.address-block--line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: hsl(200, 15%, 20%);
  font-size: 0.95rem;
}

.address-block--line i {
  color: hsl(195, 70%, 45%);
  font-size: 1.1rem;
  width: 20px;
}

.geo-panel--link {
  color: hsl(200, 15%, 15%);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}

.geo-panel--link:hover {
  border-bottom-color: hsl(15, 80%, 55%);
  color: hsl(15, 80%, 55%);
}

.geo-panel--badge {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.geo-badge--18 {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: hsl(40, 30%, 96%);
  background-color: hsl(15, 80%, 55%);
  padding: 0.2rem 0.8rem;
  border: 3px solid hsl(200, 15%, 15%);
  text-align: center;
  line-height: 1;
}

.geo-badge--nz {
  background-color: hsl(200, 15%, 15%);
  color: hsl(50, 100%, 55%);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid hsl(50, 100%, 55%);
}

.footer-block--copyright_strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid hsl(200, 15%, 20%);
}

.copyright-strip--year {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(40, 30%, 60%);
  font-size: 0.9rem;
}

.copyright-strip--year i {
  color: hsl(195, 70%, 45%);
}

.copyright-strip--icons {
  display: flex;
  gap: 1rem;
}

.copyright-strip--icons i {
  font-size: 1.2rem;
  color: hsl(200, 15%, 30%);
  transition: color 0.15s;
}

.copyright-strip--icons i:hover {
  color: hsl(15, 80%, 55%);
}

.site-footer--bottom_decor {
  max-width: 1368px;
  margin: 2rem auto 0;
  padding: 1rem 2rem 0;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid hsl(200, 15%, 15%);
}

.site-footer--bottom_decor span {
  color: hsl(200, 15%, 25%);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.site-footer--bottom_decor span::before {
  content: '◆';
  position: absolute;
  left: -1.5rem;
  color: hsl(15, 80%, 55%);
  opacity: 0.3;
}

.site-footer--bottom_decor span:first-child::before {
  display: none;
}

@media (max-width: 960px) {
  .footer-block--links_maze {
    grid-template-columns: 1fr 1fr;
  }
  
  .links-maze--group_tertiary {
    grid-column: 1 / -1;
    justify-content: center;
  }
  
  .footer-block--geo_panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .geo-panel--map_marker {
    flex-direction: row;
    justify-content: center;
  }
  
  .geo-panel--badge {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .footer-block--identity_section {
    flex-direction: column;
    align-items: flex-start;
    transform: none;
    margin-left: 0;
  }
  
  .identity-section--message {
    transform: none;
    width: 100%;
  }
  
  .footer-block--links_maze {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .links-maze--group_primary,
  .links-maze--group_secondary {
    border-right: none;
    border-bottom: 2px dashed hsl(50, 100%, 55%);
    padding-right: 0;
    padding-bottom: 1rem;
  }
}

@media (max-width: 620px) {
  .site-footer--main_content {
    padding: 0 1rem;
  }
  
  .identity-section--logo_text {
    font-size: 1.5rem;
  }
  
  .footer-block--copyright_strip {
    flex-direction: column;
    text-align: center;
  }
  
  .address-block--line {
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .geo-panel--address_block {
    width: 100%;
  }
  
  .address-block--line {
    font-size: 0.85rem;
    word-break: break-word;
  }
  
  .geo-panel--link {
    word-break: break-all;
  }
  
  .site-footer--bottom_decor {
    gap: 1rem;
  }
  
  .site-footer--bottom_decor span::before {
    display: none;
  }
}