@font-face {
    font-family: 'Poppins';
    src: url('/art-deco-assets/metropolis-type/poppins.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/art-deco-assets/metropolis-type/playfair.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: hsl(40, 30%, 96%);
    color: hsl(0, 0%, 15%);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul, ol {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

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

.verification__corner-topright {
  display: block;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 380px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  pointer-events: auto;
  background: transparent;
  box-shadow: none;
}

.verification__panel-restricted {
  position: relative;
  background: hsl(40, 30%, 96%);
  border: 3px solid hsl(25, 75%, 50%);
  box-shadow: -15px 15px 0 hsl(45, 80%, 60%);
  padding: 1.8rem;
}

.verification__header-section {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.verification__icon-guard {
  font-size: 2.2rem;
  color: hsl(25, 75%, 50%);
  background: hsl(45, 80%, 60%);
  padding: 0.4rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.verification__title-primary {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 15%);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 3px solid hsl(85, 40%, 50%);
  padding-bottom: 0.2rem;
}

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

.verification__text-notice {
  font-size: 0.95rem;
  line-height: 1.5;
  color: hsl(0, 0%, 20%);
  padding: 0 0.3rem;
}

.verification__action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.verification__button-confirm {
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border: 2px solid hsl(0, 0%, 15%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 20%, 100% 80%, 90% 100%, 10% 100%, 0% 80%, 0% 20%);
  cursor: pointer;
  flex: 1;
}

.verification__button-confirm:hover {
  background: hsl(85, 40%, 50%);
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 hsl(0, 0%, 15%);
}

.verification__button-exit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: hsl(0, 0%, 15%);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid hsl(0, 0%, 15%);
  text-decoration: none;
  flex: 1;
  justify-content: center;
}

.verification__button-exit i {
  font-size: 1.1rem;
  color: hsl(25, 75%, 50%);
}

.verification__button-exit:hover {
  background: hsl(0, 0%, 15%);
  color: hsl(40, 30%, 96%);
}

.verification__button-exit:hover i {
  color: hsl(45, 80%, 60%);
}

.verification__close-trigger {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: hsl(0, 0%, 15%);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}

.verification__close-trigger:hover {
  border-color: hsl(25, 75%, 50%);
  transform: rotate(90deg);
}

.verification__corner-topright[style*="display: none"] {
  display: none !important;
}

@media (max-width: 768px) {
  .verification__corner-topright {
    top: 1rem;
    right: 1rem;
    width: 320px;
  }
  
  .verification__panel-restricted {
    padding: 1.2rem;
    box-shadow: -10px 10px 0 hsl(45, 80%, 60%);
  }
}

@media (max-width: 480px) {
  .verification__corner-topright {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    width: auto;
  }
  
  .verification__panel-restricted {
    padding: 1rem;
  }
  
  .verification__action-row {
    flex-direction: column;
  }
  
  .verification__button-confirm,
  .verification__button-exit {
    width: 100%;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.consent__corner-bottomleft {
  display: block;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 340px;
  z-index: 9998;
  font-family: 'Poppins', sans-serif;
  pointer-events: auto;
  background: transparent;
}

.consent__panel-privacy {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: hsl(40, 30%, 96%);
  border-left: 8px solid hsl(85, 40%, 50%);
  border-top: 2px solid hsl(25, 75%, 50%);
  border-bottom: 2px solid hsl(25, 75%, 50%);
  border-right: 2px solid hsl(25, 75%, 50%);
  padding: 1rem;
  box-shadow: 10px 10px 0 rgba(191, 106, 44, 0.2);
}

.consent__ornament-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent__ornament-side i {
  font-size: 2.2rem;
  color: hsl(45, 80%, 60%);
  background: hsl(25, 75%, 50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transform: rotate(10deg);
}

.consent__content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.consent__heading-tertiary {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: hsl(0, 0%, 15%);
  margin: 0;
  letter-spacing: 0.5px;
}

.consent__description-short {
  font-size: 0.9rem;
  color: hsl(0, 0%, 30%);
  margin: 0;
  line-height: 1.4;
}

.consent__row-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.consent__button-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: hsl(85, 40%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.3rem 1rem;
  border: 1px solid hsl(0, 0%, 15%);
  cursor: pointer;
}

.consent__button-simple:hover {
  background: hsl(25, 75%, 50%);
  transform: translateY(-2px);
}

.consent__link-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(25, 75%, 50%);
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid transparent;
}

.consent__link-mini:hover {
  border-color: hsl(25, 75%, 50%);
  background: rgba(191, 106, 44, 0.1);
}

.consent__button-hide {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: hsl(0, 0%, 50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent__button-hide:hover {
  color: hsl(25, 75%, 50%);
  transform: scale(1.2);
}

.consent__corner-bottomleft[style*="display: none"] {
  display: none !important;
}

@media (max-width: 768px) {
  .consent__corner-bottomleft {
    bottom: 1rem;
    left: 1rem;
    width: 300px;
  }
}

@media (max-width: 480px) {
  .consent__corner-bottomleft {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
  }
  
  .consent__panel-privacy {
    flex-direction: column;
    text-align: center;
  }
  
  .consent__ornament-side i {
    transform: rotate(0);
  }
  
  .consent__row-actions {
    justify-content: center;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.navigation__master-bar {
  background: hsl(40, 30%, 96%);
  border-bottom: 5px solid hsl(25, 75%, 50%);
  font-family: 'Poppins', sans-serif;
  position: relative;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.navigation__interior-flex {
  max-width: 1336px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.navigation__identity-block {
  flex: 1 1 auto;
  min-width: 200px;
}

.navigation__home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: hsl(0, 0%, 15%);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.2s;
  flex-wrap: wrap;
}

.navigation__emblem-sign {
  font-size: 2rem;
  color: hsl(25, 75%, 50%);
  background: hsl(45, 80%, 60%);
  padding: 0.3rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transform: rotate(15deg);
  transition: transform 0.3s;
}

.navigation__home-link:hover .navigation__emblem-sign {
  transform: rotate(0deg);
}

.navigation__featured-link {
  flex: 0 1 auto;
}

.navigation__highlight-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  border: 2px solid hsl(0, 0%, 15%);
  clip-path: polygon(8% 0%, 92% 0%, 100% 20%, 100% 80%, 92% 100%, 8% 100%, 0% 80%, 0% 20%);
  transition: all 0.2s;
  flex-wrap: wrap;
}

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

.navigation__highlight-trigger i:last-child {
  font-size: 1rem;
  transition: transform 0.2s;
}

.navigation__highlight-trigger:hover {
  background: hsl(85, 40%, 50%);
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 hsl(0, 0%, 15%);
}

.navigation__highlight-trigger:hover i:last-child {
  transform: translateY(3px);
}

.navigation__pages-collection {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.8rem;
  flex-wrap: wrap;
  flex: 2 1 auto;
  min-width: 300px;
}

.navigation__page-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(0, 0%, 15%);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
  flex-wrap: wrap;
}

.navigation__page-item i {
  font-size: 1.1rem;
  color: hsl(25, 75%, 50%);
  transition: transform 0.2s;
}

.navigation__page-item:hover {
  border-bottom-color: hsl(85, 40%, 50%);
  background: rgba(191, 106, 44, 0.05);
}

.navigation__page-item:hover i {
  transform: translateY(-2px);
  color: hsl(85, 40%, 50%);
}

@media (max-width: 988px) {
  .navigation__interior-flex {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .navigation__identity-block {
    text-align: center;
  }
  
  .navigation__featured-link {
    align-self: center;
  }
  
  .navigation__pages-collection {
    justify-content: center;
  }
}

@media (max-width: 688px) {
  .navigation__interior-flex {
    padding: 0.8rem;
  }
  
  .navigation__home-link {
    font-size: 1.2rem;
  }
  
  .navigation__pages-collection {
    gap: 0.4rem;
  }
  
  .navigation__page-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .navigation__interior-flex {
    padding: 0.5rem;
  }
  
  .navigation__pages-collection {
    flex-direction: column;
    align-items: stretch;
    min-width: auto;
  }
  
  .navigation__page-item {
    justify-content: center;
    border: 1px solid rgba(191, 106, 44, 0.3);
    border-radius: 0;
  }
  
  .navigation__highlight-trigger {
    width: 100%;
    justify-content: center;
  }
}

.welcome__grand-stage {
  position: relative;
  min-height: 43vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  padding: 4rem 0;
}

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

.welcome__backdrop-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.welcome__overlay-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(191,106,44,0.83) 100%);
  z-index: 2;
}

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

.welcome__rain-particle {
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, hsl(45, 80%, 60%) 50%, transparent 100%);
  opacity: 0.4;
  animation: welcome__shower-fall 3s linear infinite;
  transform: rotate(15deg);
}

.welcome__rain-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.welcome__rain-particle:nth-child(2) { left: 20%; animation-delay: 0.5s; height: 80px; opacity: 0.6; }
.welcome__rain-particle:nth-child(3) { left: 30%; animation-delay: 1s; height: 40px; }
.welcome__rain-particle:nth-child(4) { left: 40%; animation-delay: 1.5s; height: 70px; opacity: 0.5; }
.welcome__rain-particle:nth-child(5) { left: 50%; animation-delay: 2s; height: 50px; }
.welcome__rain-particle:nth-child(6) { left: 60%; animation-delay: 2.5s; height: 90px; opacity: 0.7; }
.welcome__rain-particle:nth-child(7) { left: 70%; animation-delay: 3s; height: 45px; }
.welcome__rain-particle:nth-child(8) { left: 80%; animation-delay: 0.8s; height: 65px; }
.welcome__rain-particle:nth-child(9) { left: 90%; animation-delay: 1.8s; height: 55px; opacity: 0.5; }
.welcome__rain-particle:nth-child(10) { left: 95%; animation-delay: 2.2s; height: 75px; }

@keyframes welcome__shower-fall {
  0% {
    top: -20%;
    opacity: 0;
  }
  20% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    top: 120%;
    opacity: 0;
  }
}

.welcome__content-grid {
  position: relative;
  z-index: 4;
  max-width: 1336px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  color: hsl(40, 30%, 96%);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.welcome__header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.welcome__main-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 0 hsl(0, 0%, 15%);
  letter-spacing: 2px;
}

.welcome__title-accent {
  color: hsl(45, 80%, 60%);
  border-bottom: 4px solid hsl(25, 75%, 50%);
  display: inline-block;
  padding-bottom: 0.2rem;
}

.welcome__descriptive-text {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

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

.welcome__card-item--position-top {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(191, 106, 44, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid hsl(45, 80%, 60%);
  padding: 2rem 2rem 2rem 4rem;
  position: relative;
  transform: skewY(-2deg);
}

.welcome__cards-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.welcome__card-item--position-left,
.welcome__card-item--position-center,
.welcome__card-item--position-right {
  flex: 1 1 250px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: 1px solid hsl(25, 75%, 50%);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: all 0.3s;
}

.welcome__card-item--position-left {
  transform: rotate(-2deg) translateY(20px);
}

.welcome__card-item--position-center {
  transform: translateY(-10px);
  border-width: 3px;
  border-color: hsl(45, 80%, 60%);
}

.welcome__card-item--position-right {
  transform: rotate(2deg) translateY(20px);
}

.welcome__card-ornament {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 50px;
  height: 50px;
  background: hsl(25, 75%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
}

.welcome__card-ornament i {
  font-size: 1.5rem;
  color: hsl(40, 30%, 96%);
}

.welcome__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: hsl(45, 80%, 60%);
}

.welcome__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.welcome__card-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 2rem;
  color: hsl(25, 75%, 50%);
  opacity: 0.3;
}

.welcome__action-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.welcome__link-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  border: 2px solid hsl(45, 80%, 60%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 20%, 100% 80%, 95% 100%, 5% 100%, 0% 80%, 0% 20%);
  text-decoration: none;
  transition: all 0.3s;
}

.welcome__link-primary:hover {
  background: hsl(85, 40%, 50%);
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 hsl(0, 0%, 15%);
}

.welcome__link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(40, 30%, 96%);
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: all 0.3s;
}

.welcome__link-secondary i {
  font-size: 1.3rem;
  color: hsl(45, 80%, 60%);
}

.welcome__link-secondary:hover {
  border-bottom-color: hsl(45, 80%, 60%);
  transform: translateX(5px);
}

@media (max-width: 988px) {
  .welcome__main-title {
    font-size: 2.5rem;
  }
  
  .welcome__card-item--position-left,
  .welcome__card-item--position-right {
    transform: none;
  }
  
  .welcome__card-item--position-center {
    transform: translateY(0);
  }
}

@media (max-width: 688px) {
  .welcome__grand-stage {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .welcome__main-title {
    font-size: 2rem;
  }
  
  .welcome__descriptive-text {
    font-size: 1rem;
  }
  
  .welcome__card-item--position-top {
    padding: 1.5rem;
    transform: none;
    max-width: 100%;
  }
  
  .welcome__cards-row {
    flex-direction: column;
  }
  
  .welcome__action-links {
    flex-direction: column;
    width: 100%;
  }
  
  .welcome__link-primary,
  .welcome__link-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .welcome__rain-particle {
    animation: none !important;
    opacity: 0.1;
    transform: none !important;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .welcome__content-grid {
    padding: 1rem;
  }
  
  .welcome__main-title {
    font-size: 1.6rem;
  }
  
  .welcome__card-item--position-left,
  .welcome__card-item--position-center,
  .welcome__card-item--position-right {
    padding: 1.2rem;
  }
}

.games__showcase-area {
  background: hsl(40, 30%, 96%);
  font-family: 'Poppins', sans-serif;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.games__showcase-area::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, hsl(25, 75%, 50%) 0%, transparent 70%);
  opacity: 0.1;
  transform: skewY(-3deg);
}

.games__interior-wrap {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.games__heading-primary {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  text-align: center;
  color: hsl(0, 0%, 15%);
  margin-bottom: 3rem;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.games__heading-primary::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background: repeating-linear-gradient(90deg, hsl(25, 75%, 50%) 0px, hsl(25, 75%, 50%) 10px, hsl(45, 80%, 60%) 10px, hsl(45, 80%, 60%) 20px);
  margin: 1rem auto 0;
}

.games__heading-accent {
  color: hsl(25, 75%, 50%);
  border-bottom: 3px solid hsl(85, 40%, 50%);
}

.games__grid-collection {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.games__card-featured {
  grid-column: span 1;
  background: hsl(0, 0%, 100%);
  border: 3px solid hsl(25, 75%, 50%);
  box-shadow: 12px 12px 0 hsl(45, 80%, 60%);
  padding: 1rem 1rem 1.8rem 1rem;
  position: relative;
  transform: rotate(-1deg) translateY(-10px);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.games__card-featured:hover {
  transform: rotate(0deg) translateY(-15px);
  box-shadow: 15px 15px 0 hsl(85, 40%, 50%);
}

.games__card-standard {
  background: hsl(0, 0%, 100%);
  border: 2px solid hsl(0, 0%, 80%);
  padding: 0.8rem 0.8rem 1.5rem 0.8rem;
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.games__card-standard:nth-child(2) {
  transform: rotate(2deg) translateY(5px);
}

.games__card-standard:nth-child(3) {
  transform: rotate(-1deg) translateY(15px);
}

.games__card-standard:nth-child(4) {
  transform: rotate(1deg) translateY(0px);
}

.games__card-standard:hover {
  border-color: hsl(25, 75%, 50%);
  transform: scale(1.02) rotate(0deg) !important;
  box-shadow: 8px 8px 0 rgba(191, 106, 44, 0.3);
}

.games__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid hsl(0, 0%, 90%);
}

.games__card-featured .games__image-frame {
  clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 90% 100%, 0% 100%);
}

.games__thumbnail {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}

.games__card-featured:hover .games__thumbnail,
.games__card-standard:hover .games__thumbnail {
  transform: scale(1.1);
}

.games__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 70%, hsl(45, 80%, 60%) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.games__card-featured:hover .games__image-overlay {
  opacity: 0.3;
}

.games__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: hsl(0, 0%, 15%);
  margin: 0.5rem 0 1rem 0;
  padding: 0 0.3rem;
  line-height: 1.3;
}

.games__card-featured .games__card-title {
  font-size: 1.5rem;
  color: hsl(25, 75%, 50%);
}

.games__link-prominent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
  margin-top: auto;
  border: 2px solid hsl(0, 0%, 15%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 30%, 100% 70%, 95% 100%, 5% 100%, 0% 70%, 0% 30%);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  z-index: 2;
}

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

.games__link-prominent i:last-child {
  transition: transform 0.2s;
}

.games__link-prominent:hover {
  background: hsl(85, 40%, 50%);
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 hsl(0, 0%, 15%);
}

.games__link-prominent:hover i:last-child {
  transform: translateX(5px);
}

.games__link-bright {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(45, 80%, 60%);
  color: hsl(0, 0%, 15%);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  margin-top: auto;
  border: 2px solid hsl(25, 75%, 50%);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
}

.games__link-bright i {
  font-size: 1.1rem;
  color: hsl(25, 75%, 50%);
}

.games__link-bright:hover {
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  border-color: hsl(0, 0%, 15%);
  transform: scale(1.02);
}

.games__link-bright:hover i {
  color: hsl(40, 30%, 96%);
}

.games__card-accent {
  position: absolute;
  top: -5px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: hsl(85, 40%, 50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.3;
  z-index: 1;
}

@media (max-width: 988px) {
  .games__grid-collection {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .games__card-featured {
    grid-column: span 2;
    transform: none;
  }
  
  .games__card-standard:nth-child(2),
  .games__card-standard:nth-child(3),
  .games__card-standard:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 688px) {
  .games__showcase-area {
    padding: 3rem 0;
  }
  
  .games__interior-wrap {
    padding: 0 1rem;
  }
  
  .games__heading-primary {
    font-size: 2rem;
  }
  
  .games__grid-collection {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .games__card-featured {
    grid-column: span 1;
  }
  
  .games__card-featured,
  .games__card-standard {
    max-width: 100%;
    transform: none !important;
  }
  
  .games__card-title {
    font-size: 1.3rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .games__heading-primary {
    font-size: 1.6rem;
  }
  
  .games__heading-primary::after {
    width: 100px;
  }
  
  .games__link-prominent,
  .games__link-bright {
    width: 100%;
  }
}

.guide__split-panel {
  background: hsl(40, 30%, 96%);
  font-family: 'Poppins', sans-serif;
  padding: 5rem 0;
  position: relative;
}

.guide__split-panel::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsl(45, 80%, 60%) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.guide__interior-container {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.guide__left-column,
.guide__right-column {
  background: hsl(0, 0%, 100%);
  padding: 2.5rem;
  border: 2px solid hsl(25, 75%, 50%);
  box-shadow: 15px 15px 0 hsl(45, 80%, 60%);
}

.guide__right-column {
  box-shadow: -15px 15px 0 hsl(85, 40%, 50%);
  border-color: hsl(85, 40%, 50%);
}

.guide__header-decor {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid hsl(25, 75%, 50%);
  padding-bottom: 1rem;
}

.guide__header-decor--right {
  border-bottom-color: hsl(85, 40%, 50%);
}

.guide__header-decor i {
  font-size: 2.5rem;
  color: hsl(40, 30%, 96%);
  background: hsl(25, 75%, 50%);
  padding: 0.5rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.guide__header-decor--right i {
  background: hsl(85, 40%, 50%);
}

.guide__title-primary {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: hsl(0, 0%, 15%);
  margin: 0;
  letter-spacing: 1px;
}

.guide__title-primary--right {
  color: hsl(85, 40%, 50%);
}

.guide__intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(0, 0%, 30%);
  margin-bottom: 2rem;
  padding: 0 0.5rem;
  border-left: 4px solid hsl(45, 80%, 60%);
  padding-left: 1rem;
}

.guide__intro-text--right {
  border-left-color: hsl(85, 40%, 50%);
}

.guide__steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guide__step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.guide__step-item::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 45px;
  bottom: -25px;
  width: 2px;
  background: repeating-linear-gradient(180deg, hsl(25, 75%, 50%) 0px, hsl(25, 75%, 50%) 5px, transparent 5px, transparent 10px);
}

.guide__step-item:last-child::before {
  display: none;
}

.guide__step-number {
  width: 50px;
  height: 50px;
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  z-index: 2;
}

.guide__step-content {
  flex: 1;
  background: hsl(40, 30%, 98%);
  padding: 1.2rem;
  border: 1px solid hsl(0, 0%, 90%);
  position: relative;
}

.guide__step-content i {
  font-size: 1.5rem;
  color: hsl(25, 75%, 50%);
  margin-bottom: 0.5rem;
}

.guide__step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: hsl(0, 0%, 15%);
  margin-bottom: 0.5rem;
}

.guide__step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: hsl(0, 0%, 40%);
}

.guide__link-detailed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(40, 30%, 96%);
  background: hsl(85, 40%, 50%);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  border: 2px solid hsl(0, 0%, 15%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 25%, 100% 75%, 95% 100%, 5% 100%, 0% 75%, 0% 25%);
  transition: all 0.2s;
}

.guide__link-detailed:hover {
  background: hsl(25, 75%, 50%);
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 hsl(0, 0%, 15%);
}

.guide__solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.guide__solution-card {
  background: hsl(40, 30%, 98%);
  padding: 1.5rem 1rem;
  border: 1px solid hsl(0, 0%, 85%);
  position: relative;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.guide__solution-card:hover {
  border-color: hsl(85, 40%, 50%);
  transform: translateY(-5px);
  box-shadow: 8px 8px 0 rgba(148, 173, 86, 0.3);
}

.guide__solution-card--wide {
  grid-column: span 2;
  background: hsl(45, 80%, 60%);
  border-color: hsl(25, 75%, 50%);
}

.guide__solution-icon {
  width: 50px;
  height: 50px;
  background: hsl(85, 40%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.guide__solution-card--wide .guide__solution-icon {
  background: hsl(25, 75%, 50%);
}

.guide__solution-icon i {
  font-size: 1.5rem;
  color: hsl(40, 30%, 96%);
}

.guide__solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: hsl(0, 0%, 15%);
  margin-bottom: 0.8rem;
}

.guide__solution-card--wide .guide__solution-title {
  color: hsl(0, 0%, 15%);
  font-size: 1.3rem;
}

.guide__solution-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: hsl(0, 0%, 40%);
  margin-bottom: 0.5rem;
}

.guide__solution-card--wide .guide__solution-text {
  color: hsl(0, 0%, 20%);
}

.guide__solution-email {
  color: hsl(25, 75%, 50%);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid hsl(25, 75%, 50%);
  display: inline-block;
  margin: 0.3rem 0;
  word-break: break-all;
}

.guide__solution-email:hover {
  color: hsl(85, 40%, 50%);
  border-bottom-color: hsl(85, 40%, 50%);
}

.guide__solution-accent {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: hsl(45, 80%, 60%);
  opacity: 0.3;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

@media (max-width: 988px) {
  .guide__interior-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .guide__left-column,
  .guide__right-column {
    padding: 2rem;
  }
  
  .guide__right-column {
    box-shadow: 15px 15px 0 hsl(85, 40%, 50%);
  }
}

@media (max-width: 688px) {
  .guide__split-panel {
    padding: 3rem 0;
  }
  
  .guide__interior-container {
    padding: 0 1rem;
  }
  
  .guide__left-column,
  .guide__right-column {
    padding: 1.5rem;
    box-shadow: 8px 8px 0 hsl(45, 80%, 60%);
  }
  
  .guide__title-primary {
    font-size: 1.6rem;
  }
  
  .guide__step-item {
    flex-direction: column;
  }
  
  .guide__step-item::before {
    display: none;
  }
  
  .guide__solutions-grid {
    grid-template-columns: 1fr;
  }
  
  .guide__solution-card--wide {
    grid-column: span 1;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .guide__left-column,
  .guide__right-column {
    padding: 1rem;
  }
  
  .guide__header-decor {
    flex-direction: column;
    text-align: center;
  }
  
  .guide__title-primary {
    font-size: 1.4rem;
  }
  
  .guide__solution-card {
    padding: 1rem;
  }
}

.responsible__showcase-panel {
  background: hsl(40, 30%, 96%);
  font-family: 'Poppins', sans-serif;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.responsible__showcase-panel::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, hsl(25, 75%, 50%) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
}

.responsible__showcase-panel::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(45deg, hsl(85, 40%, 50%) 0px, hsl(85, 40%, 50%) 5px, transparent 5px, transparent 15px);
  opacity: 0.1;
  transform: rotate(10deg);
}

.responsible__container-split {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.responsible__content-block {
  background: hsl(0, 0%, 100%);
  padding: 2.5rem;
  border: 3px solid hsl(25, 75%, 50%);
  box-shadow: 20px 20px 0 hsl(45, 80%, 60%);
  position: relative;
}

.responsible__content-block::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: hsl(85, 40%, 50%);
  opacity: 0.2;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

.responsible__header-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 4px solid hsl(85, 40%, 50%);
  padding-bottom: 1rem;
}

.responsible__header-ornament i {
  font-size: 2.8rem;
  color: hsl(40, 30%, 96%);
  background: hsl(25, 75%, 50%);
  padding: 0.7rem;
  clip-path: polygon(15% 0%, 85% 0%, 100% 25%, 100% 75%, 85% 100%, 15% 100%, 0% 75%, 0% 25%);
  transform: rotate(5deg);
}

.responsible__heading-major {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: hsl(0, 0%, 15%);
  letter-spacing: 1px;
  margin: 0;
}

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

.responsible__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(0, 0%, 25%);
  margin: 0;
  position: relative;
}

.responsible__paragraph:first-of-type {
  font-weight: 500;
  border-left: 4px solid hsl(45, 80%, 60%);
  padding-left: 1rem;
}

.responsible__text-link {
  color: hsl(40, 30%, 96%);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  margin: 0 0.1rem;
  border: 1px solid transparent;
  transition: all 0.2s;
  display: inline-block;
}

.responsible__text-link--aware {
  background: hsl(25, 75%, 50%);
  border-bottom: 3px solid hsl(0, 0%, 15%);
}

.responsible__text-link--care {
  background: hsl(85, 40%, 50%);
  clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
  padding: 0.2rem 1rem;
}

.responsible__text-link--rg {
  background: hsl(45, 80%, 60%);
  color: hsl(0, 0%, 15%);
  font-weight: 700;
  border-left: 4px solid hsl(25, 75%, 50%);
}

.responsible__text-link--therapy {
  background: hsl(0, 0%, 15%);
  color: hsl(45, 80%, 60%);
  border-bottom: 2px solid hsl(25, 75%, 50%);
  font-style: italic;
}

.responsible__text-link:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 hsl(0, 0%, 15%);
}

.responsible__pull-quote {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: hsl(40, 30%, 92%);
  padding: 1.5rem;
  margin: 1rem 0;
  border-right: 8px solid hsl(25, 75%, 50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: hsl(0, 0%, 15%);
}

.responsible__pull-quote i {
  font-size: 2rem;
  color: hsl(45, 80%, 60%);
  opacity: 0.5;
}

.responsible__tip-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: hsl(45, 80%, 60%);
  padding: 1.2rem;
  margin-top: 1rem;
  border: 2px dashed hsl(25, 75%, 50%);
}

.responsible__tip-box i {
  font-size: 2rem;
  color: hsl(0, 0%, 15%);
}

.responsible__tip-box p {
  font-weight: 500;
  color: hsl(0, 0%, 15%);
  margin: 0;
}

.responsible__partners-block {
  background: hsl(0, 0%, 100%);
  padding: 2rem;
  border: 3px solid hsl(85, 40%, 50%);
  box-shadow: -15px 15px 0 hsl(25, 75%, 50%);
  display: flex;
  flex-direction: column;
}

.responsible__partners-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid hsl(25, 75%, 50%);
  padding-bottom: 0.8rem;
}

.responsible__partners-header i {
  font-size: 2rem;
  color: hsl(85, 40%, 50%);
}

.responsible__partners-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 15%);
  margin: 0;
}

.responsible__partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 1.5rem;
}

.responsible__partner-link {
  display: block;
  width: 100%;
  max-width: 277px;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.responsible__partner-link:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: hsl(25, 75%, 50%);
  box-shadow: 5px 5px 0 hsl(45, 80%, 60%);
}

.responsible__partner-image {
  width: 100%;
  height: 67px;
  object-fit: contain;
  background: hsl(40, 97%, 23%);
  padding: 0.2rem;
  border: 1px solid hsl(0, 0%, 85%);
}

.responsible__age-badge {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, hsl(25, 75%, 50%) 0%, hsl(45, 80%, 60%) 100%);
  padding: 0.8rem 2rem;
  border: 4px solid hsl(0, 0%, 15%);
  box-shadow: 0 0 0 4px hsl(40, 30%, 96%), 8px 8px 0 hsl(85, 40%, 50%);
  transform: rotate(-1deg);
  width: fit-content;
  margin: 0 auto;
}

.responsible__age-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(40, 30%, 96%);
  line-height: 1;
  text-shadow: 3px 3px 0 hsl(0, 0%, 15%);
}

.responsible__age-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 15%);
  line-height: 1;
}

.responsible__age-badge i {
  font-size: 2rem;
  color: hsl(85, 40%, 50%);
  background: hsl(40, 30%, 96%);
  padding: 0.3rem;
  border-radius: 50%;
  margin-left: 0.5rem;
}

.responsible__partners-note {
  font-size: 0.9rem;
  color: hsl(0, 0%, 50%);
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid hsl(0, 0%, 85%);
  padding-top: 1rem;
}

@media (max-width: 988px) {
  .responsible__container-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .responsible__content-block {
    box-shadow: 15px 15px 0 hsl(45, 80%, 60%);
  }
  
  .responsible__partners-block {
    box-shadow: 15px 15px 0 hsl(25, 75%, 50%);
  }
  
  .responsible__heading-major {
    font-size: 1.8rem;
  }
}

@media (max-width: 688px) {
  .responsible__content-block {
    padding: 2rem 0.1rem;
  }

  .responsible__showcase-panel {
    padding: 3rem 0;
  }
  
  .responsible__container-split {
    padding: 0 0.1rem;
  }
  
  .responsible__content-block,
  .responsible__partners-block {
    padding: 1.5rem 0.1rem;
  }
  
  .responsible__header-ornament {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible__heading-major {
    font-size: 1.6rem;
  }
  
  .responsible__pull-quote {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible__tip-box {
    flex-direction: column;
    text-align: center;
  }
  
  .responsible__partners-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .responsible__age-badge {
    grid-column: span 1;
    transform: none;
    width: 100%;
    justify-content: center;
  }
  
  .responsible__partner-link {
    max-width: 100%;
  }
  
  .responsible__partner-image {
    height: 57px;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .responsible__partners-title {
    font-size: 1.4rem;
  }
  
  .responsible__heading-major {
    font-size: 1.4rem;
  }
  
  .responsible__age-number {
    font-size: 2.5rem;
  }
  
  .responsible__age-text {
    font-size: 2rem;
  }
  
  .responsible__age-badge i {
    font-size: 1.5rem;
  }
  
  .responsible__text-link {
    display: inline-block;
    margin: 0.2rem 0;
  }
}

.about__compact-stage {
  position: relative;
  min-height: 350px;
  background: hsl(40, 30%, 96%);
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 5px solid hsl(25, 75%, 50%);
  border-bottom: 5px solid hsl(85, 40%, 50%);
}

.about__canvas-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(135deg, hsl(25, 75%, 50%) 0%, hsl(45, 80%, 60%) 100%);
  opacity: 0.1;
}

.about__glitter-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: hsl(45, 80%, 60%);
  opacity: 0.6;
  clip-path: polygon(50% 0%, 80% 30%, 80% 70%, 50% 100%, 20% 70%, 20% 30%);
  animation: about__sparkle-float 8s infinite ease-in-out;
}

.about__glitter-particle:nth-child(1) { left: 10%; top: 20%; width: 8px; height: 8px; animation-delay: 0s; opacity: 0.4; }
.about__glitter-particle:nth-child(2) { left: 25%; top: 60%; width: 12px; height: 12px; animation-delay: 1.2s; opacity: 0.7; background: hsl(25, 75%, 50%); }
.about__glitter-particle:nth-child(3) { left: 40%; top: 80%; width: 5px; height: 5px; animation-delay: 2.5s; opacity: 0.5; transform: rotate(45deg); }
.about__glitter-particle:nth-child(4) { left: 55%; top: 30%; width: 10px; height: 10px; animation-delay: 0.8s; opacity: 0.8; background: hsl(85, 40%, 50%); }
.about__glitter-particle:nth-child(5) { left: 70%; top: 70%; width: 7px; height: 7px; animation-delay: 3.2s; opacity: 0.4; }
.about__glitter-particle:nth-child(6) { left: 85%; top: 40%; width: 15px; height: 15px; animation-delay: 1.8s; opacity: 0.3; background: hsl(40, 30%, 96%); clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); }
.about__glitter-particle:nth-child(7) { left: 15%; top: 85%; width: 9px; height: 9px; animation-delay: 4.1s; opacity: 0.6; }
.about__glitter-particle:nth-child(8) { left: 45%; top: 15%; width: 11px; height: 11px; animation-delay: 0.3s; opacity: 0.9; background: hsl(45, 80%, 60%); }
.about__glitter-particle:nth-child(9) { left: 65%; top: 90%; width: 6px; height: 6px; animation-delay: 2.2s; opacity: 0.5; transform: rotate(90deg); }
.about__glitter-particle:nth-child(10) { left: 80%; top: 55%; width: 14px; height: 14px; animation-delay: 5s; opacity: 0.4; background: hsl(85, 40%, 50%); }
.about__glitter-particle:nth-child(11) { left: 30%; top: 45%; width: 8px; height: 8px; animation-delay: 3.7s; opacity: 0.7; }
.about__glitter-particle:nth-child(12) { left: 92%; top: 10%; width: 10px; height: 10px; animation-delay: 1.5s; opacity: 0.5; background: hsl(25, 75%, 50%); }

@keyframes about__sparkle-float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-60px) rotate(270deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-80px) rotate(360deg);
    opacity: 0;
  }
}

.about__content-center {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border: 3px solid hsl(25, 75%, 50%);
  box-shadow: 15px 15px 0 hsl(45, 80%, 60%);
}

.about__heading-mini {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: hsl(0, 0%, 15%);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 4px solid hsl(85, 40%, 50%);
  padding-bottom: 0.3rem;
}

.about__text-brief {
  font-size: 1.1rem;
  line-height: 1.6;
  color: hsl(0, 0%, 25%);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about__link-legacy {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: hsl(25, 75%, 50%);
  color: hsl(40, 30%, 96%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  border: 2px solid hsl(0, 0%, 15%);
  clip-path: polygon(5% 0%, 95% 0%, 100% 25%, 100% 75%, 95% 100%, 5% 100%, 0% 75%, 0% 25%);
  transition: all 0.2s;
}

.about__link-legacy i {
  font-size: 1.4rem;
  transition: transform 0.2s;
}

.about__link-legacy:hover {
  background: hsl(85, 40%, 50%);
  transform: translateY(-3px);
  box-shadow: 8px 8px 0 hsl(0, 0%, 15%);
}

.about__link-legacy:hover i {
  transform: translateX(5px);
}

@media (max-width: 688px) {
  .about__compact-stage {
    min-height: 300px;
  }
  
  .about__content-center {
    padding: 1.5rem;
    margin: 0 1rem;
    box-shadow: 8px 8px 0 hsl(45, 80%, 60%);
  }
  
  .about__heading-mini {
    font-size: 1.8rem;
  }
  
  .about__text-brief {
    font-size: 1rem;
  }
  
  .about__link-legacy {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
  
  .about__glitter-particle {
    animation: none !important;
    opacity: 0.1;
    transform: none !important;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .about__compact-stage {
    min-height: 280px;
  }
  
  .about__content-center {
    padding: 1rem;
  }
  
  .about__heading-mini {
    font-size: 1.5rem;
  }
  
  .about__text-brief {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

.footer__grand-structure {
  background: hsl(0, 0%, 10%);
  font-family: 'Poppins', sans-serif;
  color: hsl(40, 30%, 85%);
  padding: 4rem 0 0 0;
  position: relative;
  border-top: 8px solid hsl(25, 75%, 50%);
  overflow: hidden;
}

.footer__grand-structure::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: repeating-linear-gradient(45deg, hsl(25, 75%, 50%) 0px, hsl(25, 75%, 50%) 5px, transparent 5px, transparent 20px);
  opacity: 0.05;
  transform: rotate(15deg);
  z-index: 1;
}

.footer__interior-panel {
  max-width: 1336px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.3fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.footer__identity-tower {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 1rem;
  border-right: 3px solid hsl(25, 75%, 50%);
  position: relative;
}

.footer__identity-tower::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -10px;
  width: 20px;
  height: 20px;
  background: hsl(45, 80%, 60%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(45deg);
}

.footer__logo-emblema {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: hsl(40, 30%, 96%);
  transform: skewX(-5deg);
}

.footer__logo-emblema i {
  font-size: 2.5rem;
  color: hsl(45, 80%, 60%);
  background: hsl(25, 75%, 50%);
  padding: 0.3rem;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  transform: rotate(10deg);
}

.footer__responsible-mini {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(191, 106, 44, 0.2);
  padding: 1rem;
  border-left: 4px solid hsl(85, 40%, 50%);
}

.footer__responsible-mini i {
  font-size: 1.8rem;
  color: hsl(85, 40%, 50%);
  flex-shrink: 0;
}

.footer__responsible-mini p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: hsl(40, 30%, 80%);
}

.footer__links-cascade {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 1rem;
  border-bottom: 3px solid hsl(85, 40%, 50%);
  transform: translateY(-10px);
}

.footer__heading-mini {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: hsl(45, 80%, 60%);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid hsl(25, 75%, 50%);
  padding-bottom: 0.5rem;
  display: inline-block;
  width: fit-content;
}

.footer__heading-mini--partners {
  color: hsl(85, 40%, 50%);
  border-bottom-color: hsl(45, 80%, 60%);
}

.footer__heading-mini--geo {
  color: hsl(25, 75%, 50%);
  border-bottom-color: hsl(85, 40%, 50%);
}

.footer__links-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link-item {
  color: hsl(40, 30%, 75%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.footer__link-item::before {
  content: "▸";
  color: hsl(25, 75%, 50%);
  font-size: 1rem;
  opacity: 0.7;
}

.footer__link-item:hover {
  color: hsl(45, 80%, 60%);
  transform: translateX(5px);
  border-bottom-color: hsl(45, 80%, 60%);
}

.footer__partners-compact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px dashed hsl(85, 40%, 50%);
  border-right: 2px dashed hsl(85, 40%, 50%);
  transform: rotate(1deg) translateY(5px);
}

.footer__partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.footer__partner-link {
  display: block;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.footer__partner-link:hover {
  transform: translateX(-5px) scale(1.02);
  border-color: hsl(45, 80%, 60%);
  background: rgba(255, 255, 255, 0.05);
}

.footer__partner-image {
  width: 100%;
  height: 62px;
  object-fit: contain;
  background: hsl(40, 97%, 23%);
  padding: 0.1rem;
  border: 1px solid hsl(0, 0%, 30%);
}

.footer__geo-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.footer__geo-decoration {
  position: absolute;
  top: -20px;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, hsl(25, 75%, 50%) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.footer__address-block {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-bottom: 2px solid hsl(25, 75%, 50%);
}

.footer__address-block i {
  font-size: 1.3rem;
  color: hsl(45, 80%, 60%);
  flex-shrink: 0;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: 1px dotted hsl(0, 0%, 20%);
}

.footer__contact-row i {
  font-size: 1.2rem;
  color: hsl(85, 40%, 50%);
  width: 24px;
}

.footer__contact-link {
  color: hsl(40, 30%, 85%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  word-break: break-all;
}

.footer__contact-link:hover {
  color: hsl(45, 80%, 60%);
  text-decoration: underline;
}

.footer__copyright-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0 1rem 0;
  margin-top: 2rem;
  border-top: 2px solid hsl(25, 75%, 30%);
  font-size: 0.9rem;
  color: hsl(40, 30%, 60%);
  position: relative;
}

.footer__copyright-bar::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100px;
  height: 4px;
  background: hsl(45, 80%, 60%);
}

.footer__age-mini {
  display: flex;
  align-items: center;
  background: hsl(25, 75%, 50%);
  padding: 0.3rem 1rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 30%, 100% 70%, 90% 100%, 10% 100%, 0% 70%, 0% 30%);
}

.footer__age-mini span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(40, 30%, 96%);
}

.footer__age-mini i {
  font-size: 1rem;
  color: hsl(0, 0%, 15%);
  margin-left: 0.2rem;
}

@media (max-width: 988px) {
  .footer__interior-panel {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer__identity-tower {
    grid-column: span 2;
    border-right: none;
    border-bottom: 3px solid hsl(25, 75%, 50%);
    padding-bottom: 1.5rem;
  }
  
  .footer__identity-tower::after {
    display: none;
  }
  
  .footer__links-cascade {
    transform: none;
  }
  
  .footer__copyright-bar {
    grid-column: span 2;
  }
}

@media (max-width: 688px) {
  .footer__grand-structure {
    padding: 3rem 0 0 0;
  }
  
  .footer__interior-panel {
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__identity-tower {
    grid-column: span 1;
  }
  
  .footer__links-cascade,
  .footer__partners-compact,
  .footer__geo-contact {
    transform: none;
    border: none;
    padding: 0;
  }
  
  .footer__partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__copyright-bar {
    grid-column: span 1;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .footer__logo-emblema {
    font-size: 1.4rem;
  }
  
  .footer__partners-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__partner-image {
    height: 52px;
  }
  
  .footer__contact-row {
    flex-wrap: wrap;
  }
}