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

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

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Inter', sans-serif;
    background-color: hsl(42, 70%, 95%);
    color: hsl(210, 15%, 15%);
}

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

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

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

@font-face {
    font-family: 'Inter';
    src: url('/game_hub/font-pack/Inter-400-700.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('/game_hub/font-pack/RobotoSlab-400-700.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pacifico';
    src: url('/game_hub/font-pack/Pacifico-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.max-width-desktop {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.max-width-tablet {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
}

.max-width-mobile {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}

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

top-bar {
  display: block;
  background-color: hsl(42, 70%, 88%);
  border-bottom: 2px solid hsl(42, 70%, 75%);
  width: 100%;
}

.top-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1rem;
}

.top-bar__logo-area {
  display: flex;
  justify-content: center;
}

.top-bar__logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: hsl(210, 15%, 15%);
  transition: all 0.2s ease;
}

.top-bar__logo-link:hover {
  transform: scale(1.02);
}

.top-bar__logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.top-bar__logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, hsl(210, 15%, 15%) 0%, hsl(162, 70%, 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header {
  display: block;
  background-color: hsl(42, 70%, 95%);
  padding: 1rem 0 1.2rem;
  border-bottom: 3px solid hsl(162, 70%, 40%);
  width: 100%;
}

.site-header__inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 1rem;
}

.site-header__nav-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header__nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.site-header__nav-placeholder {
  width: 40px;
  height: 40px;
  opacity: 0;
}

.site-header__nav-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.site-header__nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: hsl(210, 15%, 15%);
  font-family: 'Roboto Slab', serif;
  font-weight: 400;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.site-header__nav-link i {
  font-size: 1.2rem;
  color: hsl(162, 70%, 40%);
}

.site-header__nav-link:hover {
  border-bottom: 2px solid hsl(162, 70%, 40%);
  transform: translateY(-2px);
}

.site-header__nav-link--highlight {
  font-weight: 700;
  color: hsl(162, 70%, 40%);
  font-size: 1.2rem;
  padding: 0.5rem 1.2rem;
  background-color: hsl(42, 70%, 88%);
  border-radius: 50px;
  border: 2px solid hsl(162, 70%, 40%);
}

.site-header__nav-link--highlight i {
  color: hsl(210, 15%, 15%);
}

.site-header__nav-link--highlight:hover {
  background-color: hsl(162, 70%, 40%);
  color: white;
  border-bottom: 2px solid hsl(162, 70%, 40%);
}

.site-header__nav-link--highlight:hover i {
  color: white;
}

.site-header__notice {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 0.8rem 1.2rem;
  background-color: hsl(42, 70%, 88%);
  border-radius: 12px;
  border-left: 6px solid hsl(162, 70%, 40%);
  font-size: 0.95rem;
}

.site-header__notice i {
  font-size: 1.5rem;
  color: hsl(162, 70%, 40%);
}

@media (max-width: 920px) {
  .site-header__nav-right {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .site-header__nav-link {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 750px) {
  .site-header__nav-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .site-header__nav-left, 
  .site-header__nav-right {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }
  
  .site-header__nav-placeholder {
    display: none;
  }
  
  .site-header__nav-right {
    justify-content: center;
  }
  
  .site-header__notice {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .top-bar__inner {
    padding: 0.5rem 0.5rem;
  }
  
  .top-bar__logo-text {
    font-size: 1.2rem;
  }
  
  .site-header__nav-right {
    gap: 0.5rem;
  }
  
  .site-header__nav-link {
    font-size: 0.9rem;
  }
  
  .site-header__nav-link i {
    font-size: 1rem;
  }
  
  .site-header__nav-link--highlight {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
  
  .site-header__notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

@media (max-width: 360px) {
  .site-header__nav-right {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }
  
  .site-header__notice {
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.welcome-zone {
  display: block;
  position: relative;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  color: white;
}

.welcome-zone__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.welcome-zone__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.welcome-zone__rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  background-size: 100% 300%;
  animation: glide-980 8s linear infinite;
}

@keyframes glide-980 {
  0% {
    background-position: 0% 0%;
    opacity: 0.1;
  }
  25% {
    opacity: 0.3;
  }
  50% {
    background-position: 0% 50%;
    opacity: 0.2;
  }
  75% {
    opacity: 0.4;
  }
  100% {
    background-position: 0% 100%;
    opacity: 0.1;
  }
}

.welcome-zone__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 1rem;
  min-height: 90vh;
  justify-content: center;
}

.welcome-zone__header-area {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

.welcome-zone__title {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.welcome-zone__title-main {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-zone__title-brand {
  font-family: 'Pacifico', cursive;
  font-size: 3.5rem;
  line-height: 1.1;
  background: linear-gradient(135deg, white 0%, hsl(162, 70%, 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-zone__description-box {
  flex: 1;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 24px;
  border-left: 6px solid hsl(162, 70%, 40%);
  transform: skewX(-5deg);
}

.welcome-zone__description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  transform: skewX(5deg);
}

.welcome-zone__features-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.welcome-zone__feature {
  flex: 0 1 calc(25% - 1.2rem);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.welcome-zone__feature:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
  transform: translateY(-5px) translateX(-3px);
}

.welcome-zone__feature--pos1 {
  transform: rotate(1deg) translateY(-10px);
}

.welcome-zone__feature--pos2 {
  transform: rotate(-2deg) translateY(15px);
}

.welcome-zone__feature--pos3 {
  transform: rotate(3deg) translateY(-5px);
}

.welcome-zone__feature--pos4 {
  transform: rotate(-1deg) translateY(20px);
}

.welcome-zone__feature-icon {
  width: 60px;
  height: 60px;
  background: hsl(162, 70%, 40%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.welcome-zone__feature-icon i {
  font-size: 2rem;
  color: white;
}

.welcome-zone__feature-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.welcome-zone__feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.welcome-zone__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: flex-end;
}

.welcome-zone__action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: hsl(162, 70%, 40%);
  color: white;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  transform: skewX(-5deg);
}

.welcome-zone__action-primary i {
  font-size: 1.4rem;
  transform: skewX(5deg);
}

.welcome-zone__action-primary span {
  transform: skewX(5deg);
}

.welcome-zone__action-primary:hover {
  background: transparent;
  border-color: hsl(162, 70%, 40%);
  color: white;
  transform: skewX(-5deg) translateY(-3px);
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
}

.welcome-zone__action-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: white;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  border: 2px solid white;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.welcome-zone__action-secondary i {
  font-size: 1.2rem;
}

.welcome-zone__action-secondary:hover {
  background: white;
  color: hsl(210, 15%, 15%);
  transform: translateY(-3px);
}

@media (max-width: 920px) {
  .welcome-zone__feature {
    flex: 0 1 calc(50% - 1rem);
  }
  
  .welcome-zone__title-brand {
    font-size: 2.8rem;
  }
}

@media (max-width: 750px) {
  .welcome-zone {
    min-height: 80vh;
  }
  
  .welcome-zone__content {
    padding: 3rem 1rem;
    gap: 2rem;
  }
  
  .welcome-zone__header-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .welcome-zone__title-brand {
    font-size: 2.5rem;
  }
  
  .welcome-zone__description-box {
    transform: none;
    width: 100%;
  }
  
  .welcome-zone__description {
    transform: none;
  }
  
  .welcome-zone__feature {
    flex: 0 1 100%;
    transform: none !important;
  }
  
  .welcome-zone__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .welcome-zone__content {
    padding: 2rem 0.5rem;
  }
  
  .welcome-zone__title-main {
    font-size: 1.2rem;
  }
  
  .welcome-zone__title-brand {
    font-size: 2rem;
  }
  
  .welcome-zone__description {
    font-size: 1rem;
  }
  
  .welcome-zone__feature {
    padding: 1.2rem 1rem;
  }
  
  .welcome-zone__feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .welcome-zone__feature-icon i {
    font-size: 1.5rem;
  }
  
  .welcome-zone__feature-title {
    font-size: 1.2rem;
  }
  
  .welcome-zone__action-primary,
  .welcome-zone__action-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
  }
  
  .welcome-zone__rain {
    animation: none;
    background: linear-gradient(transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    background-size: 100% 300%;
    opacity: 0.3;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.games-hub {
  display: block;
  background-color: hsl(42, 70%, 95%);
  padding: 4rem 0;
  width: 100%;
}

.games-hub__inner {
  padding: 0 1rem;
}

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

.games-hub__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.games-hub__title-accent {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsl(162, 70%, 40%);
}

.games-hub__title-main {
  font-family: 'Pacifico', cursive;
  font-size: 3rem;
  color: hsl(210, 15%, 15%);
}

.games-hub__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  color: hsl(210, 15%, 30%);
  max-width: 700px;
  margin: 0 auto;
}

.games-hub__flex-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
}

.games-hub__game-tile {
  flex: 0 1 calc(33.333% - 1.4rem);
  min-width: 280px;
  background: hsl(42, 70%, 88%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  transform: skewX(-2deg);
}

.games-hub__game-tile:nth-child(even) {
  transform: skewX(2deg);
}

.games-hub__game-tile:hover {
  transform: skewX(-2deg) translateY(-8px) translateX(-4px);
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
}

.games-hub__game-tile:nth-child(even):hover {
  transform: skewX(2deg) translateY(-8px) translateX(4px);
}

.games-hub__tile-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.games-hub__tile-image {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}

.games-hub__game-tile:hover .games-hub__tile-image {
  transform: scale(1.05);
}

.games-hub__tile-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 1rem;
  background: hsl(162, 70%, 40%);
  color: white;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
  transform: rotate(5deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}

.games-hub__tile-badge--new {
  background: hsl(350, 70%, 50%);
}

.games-hub__tile-badge--choice {
  background: hsl(45, 90%, 50%);
  color: hsl(210, 15%, 15%);
}

.games-hub__tile-badge--top {
  background: hsl(280, 70%, 50%);
}

.games-hub__tile-badge--trending {
  background: hsl(200, 80%, 45%);
}

.games-hub__tile-badge--editor {
  background: hsl(30, 90%, 50%);
}

.games-hub__tile-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.games-hub__tile-name {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: hsl(210, 15%, 15%);
  margin: 0;
}

.games-hub__tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: linear-gradient(135deg, hsl(162, 70%, 40%) 0%, hsl(162, 80%, 30%) 100%);
  color: white;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  width: fit-content;
  transform: skewX(4deg);
}

.games-hub__tile-link i:first-child {
  font-size: 1.2rem;
}

.games-hub__tile-link i:last-child {
  font-size: 1.4rem;
  transition: transform 0.2s ease;
}

.games-hub__tile-link:hover {
  background: transparent;
  border-color: hsl(162, 70%, 40%);
  color: hsl(162, 70%, 40%);
  transform: skewX(4deg) translateY(-2px);
}

.games-hub__tile-link:hover i:last-child {
  transform: translateX(5px);
}

.games-hub__footer {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.games-hub__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: hsl(210, 15%, 15%);
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border: 3px solid hsl(162, 70%, 40%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.games-hub__more-link i {
  font-size: 1.4rem;
  color: hsl(162, 70%, 40%);
  transition: transform 0.2s ease;
}

.games-hub__more-link:hover {
  background: hsl(162, 70%, 40%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 hsl(42, 50%, 70%);
}

.games-hub__more-link:hover i {
  color: white;
  transform: translateX(5px);
}

@media (max-width: 1080px) {
  .games-hub__game-tile {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 750px) {
  .games-hub {
    padding: 3rem 0;
  }
  
  .games-hub__title-main {
    font-size: 2.5rem;
  }
  
  .games-hub__subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 620px) {
  .games-hub__game-tile {
    flex: 0 1 100%;
    transform: none !important;
  }
  
  .games-hub__game-tile:hover {
    transform: translateY(-5px) !important;
  }
  
  .games-hub__tile-media {
    height: 180px;
  }
  
  .games-hub__tile-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .games-hub {
    padding: 2rem 0;
  }
  
  .games-hub__inner {
    padding: 0 0.1rem;
  }
  
  .games-hub__title-accent {
    font-size: 1rem;
  }
  
  .games-hub__title-main {
    font-size: 2rem;
  }
  
  .games-hub__subtitle {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
  .games-hub__flex-grid {
    gap: 1rem;
  }
  
  .games-hub__tile-content {
    padding: 1rem;
  }
  
  .games-hub__tile-name {
    font-size: 1.2rem;
  }
  
  .games-hub__tile-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .games-hub__more-link {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.how-it-works {
  display: block;
  background-color: hsl(42, 70%, 92%);
  padding: 5rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: hsl(162, 70%, 40%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: hsl(42, 70%, 70%);
  opacity: 0.08;
  border-radius: 50%;
  z-index: 0;
}

.how-it-works__inner {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.how-it-works__header {
  margin-bottom: 3rem;
}

.how-it-works__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.how-it-works__title-accent {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsl(162, 70%, 40%);
}

.how-it-works__title-main {
  font-family: 'Pacifico', cursive;
  font-size: 3.2rem;
  color: hsl(210, 15%, 15%);
}

.how-it-works__content-grid {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-bottom: 3rem;
}

.how-it-works__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.how-it-works__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: hsl(210, 15%, 20%);
  background: rgba(255, 255, 255, 0.5);
  padding: 1.2rem;
  border-radius: 24px;
  border-left: 6px solid hsl(162, 70%, 40%);
  transform: skewX(-2deg);
}

.how-it-works__paragraph:nth-child(even) {
  transform: skewX(2deg);
  border-left: none;
  border-right: 6px solid hsl(162, 70%, 40%);
}

.how-it-works__features-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.how-it-works__features-row {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.how-it-works__features-row--top {
  justify-content: flex-start;
}

.how-it-works__features-row--bottom {
  justify-content: flex-end;
}

.how-it-works__feature {
  flex: 0 1 calc(50% - 0.75rem);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: hsl(42, 70%, 88%);
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.how-it-works__feature--left {
  transform: rotate(-1deg) translateY(0);
}

.how-it-works__feature--right {
  transform: rotate(2deg) translateY(10px);
}

.how-it-works__feature:hover {
  transform: rotate(0) translateY(-8px) translateX(-4px);
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
}

.how-it-works__feature-icon {
  width: 60px;
  height: 60px;
  background: hsl(162, 70%, 40%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.how-it-works__feature-icon i {
  font-size: 2rem;
  color: white;
}

.how-it-works__feature-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(210, 15%, 15%);
}

.how-it-works__feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: hsl(210, 15%, 25%);
}

.how-it-works__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.how-it-works__action {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: hsl(162, 70%, 40%);
  color: white;
  text-decoration: none;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  transform: skewX(-3deg);
}

.how-it-works__action i:first-child {
  font-size: 1.3rem;
  transform: skewX(3deg);
}

.how-it-works__action i:last-child {
  font-size: 1.5rem;
  transition: transform 0.2s ease;
  transform: skewX(3deg);
}

.how-it-works__action span {
  transform: skewX(3deg);
}

.how-it-works__action:hover {
  background: transparent;
  border-color: hsl(162, 70%, 40%);
  color: hsl(162, 70%, 40%);
  transform: skewX(-3deg) translateY(-4px);
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
}

.how-it-works__action:hover i:last-child {
  transform: translateX(6px) skewX(3deg);
}

@media (max-width: 920px) {
  .how-it-works__content-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .how-it-works__features-row {
    justify-content: center;
  }
}

@media (max-width: 750px) {
  how-it-works {
    padding: 3rem 0;
  }
  
  .how-it-works__title-main {
    font-size: 2.8rem;
  }
  
  .how-it-works__paragraph {
    padding: 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 620px) {
  .how-it-works__features-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .how-it-works__feature {
    flex: 0 1 100%;
    transform: none !important;
  }
  
  .how-it-works__feature:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 480px) {
  .how-it-works {
    padding: 2rem 0;
  }
  
  .how-it-works__inner {
    padding: 0 0.5rem;
  }
  
  .how-it-works__title-accent {
    font-size: 1rem;
  }
  
  .how-it-works__title-main {
    font-size: 2.2rem;
  }
  
  .how-it-works__paragraph {
    transform: none !important;
    border-left: 4px solid hsl(162, 70%, 40%);
    border-right: none !important;
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  
  .how-it-works__feature {
    padding: 1.2rem 1rem;
  }
  
  .how-it-works__feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .how-it-works__feature-icon i {
    font-size: 1.5rem;
  }
  
  .how-it-works__feature-title {
    font-size: 1.2rem;
  }
  
  .how-it-works__action {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.trouble-shoot {
  display: block;
  position: relative;
  width: 100%;
  min-height: 90vh;
  padding: 5rem 0;
  overflow: hidden;
  color: white;
}

.trouble-shoot__animation-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(135deg, hsl(210, 30%, 15%) 0%, hsl(210, 40%, 10%) 100%);
}

.trouble-shoot__shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.trouble-shoot__shape--1 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -50px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  animation: pulse-4600 8s ease-in-out infinite;
}

.trouble-shoot__shape--2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  animation: pulse-4600 12s ease-in-out infinite reverse;
}

.trouble-shoot__shape--3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 15%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: shift-2620 15s linear infinite;
}

.trouble-shoot__shape--4 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 60% 40% 40% 60% / 60% 50% 50% 40%;
  animation: shift-2620 18s linear infinite reverse;
}

.trouble-shoot__shape--5 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: pulse-4600 10s ease-in-out infinite;
}

.trouble-shoot__shape--6 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  right: 20%;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  animation: shift-2620 20s linear infinite;
}

@keyframes pulse-4600 {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes shift-2620 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, 20px) rotate(90deg);
  }
  50% {
    transform: translate(10px, 50px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, 20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.trouble-shoot__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.trouble-shoot__inner {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.trouble-shoot__header {
  margin-bottom: 3rem;
}

.trouble-shoot__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.trouble-shoot__title-accent {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsl(162, 70%, 60%);
}

.trouble-shoot__title-main {
  font-family: 'Pacifico', cursive;
  font-size: 3.2rem;
  color: white;
}

.trouble-shoot__content-grid {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin-bottom: 3rem;
}

.trouble-shoot__text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.trouble-shoot__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 1.2rem;
  border-radius: 24px;
  border-left: 6px solid hsl(162, 70%, 60%);
  transform: skewX(-2deg);
}

.trouble-shoot__paragraph:nth-child(even) {
  transform: skewX(2deg);
  border-left: none;
  border-right: 6px solid hsl(162, 70%, 60%);
}

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

.trouble-shoot__solution-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  padding: 1.5rem 1.2rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: skewX(-2deg);
}

.trouble-shoot__solution-card:nth-child(even) {
  transform: skewX(2deg);
  margin-top: 1rem;
}

.trouble-shoot__solution-card:nth-child(3) {
  transform: skewX(2deg);
  margin-bottom: 1rem;
}

.trouble-shoot__solution-card:nth-child(4) {
  transform: skewX(-2deg);
  margin-top: -0.5rem;
}

.trouble-shoot__solution-card:nth-child(5) {
  transform: skewX(-2deg);
  margin-bottom: -0.5rem;
}

.trouble-shoot__solution-card:nth-child(6) {
  transform: skewX(2deg);
  margin-top: 0.5rem;
}

.trouble-shoot__solution-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-2deg) translateY(-5px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}

.trouble-shoot__solution-card:nth-child(even):hover {
  transform: skewX(2deg) translateY(-5px);
}

.trouble-shoot__solution-icon {
  width: 50px;
  height: 50px;
  background: hsl(162, 70%, 60%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trouble-shoot__solution-icon i {
  font-size: 1.6rem;
  color: hsl(210, 30%, 15%);
}

.trouble-shoot__solution-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: white;
}

.trouble-shoot__solution-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.trouble-shoot__email-link {
  color: hsl(162, 70%, 60%);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.trouble-shoot__email-link:hover {
  border-bottom-color: hsl(162, 70%, 60%);
}

.trouble-shoot__footer {
  text-align: center;
  margin-top: 3rem;
}

.trouble-shoot__disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
}

@media (max-width: 920px) {
  .trouble-shoot__content-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .trouble-shoot__solutions {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 750px) {
  .trouble-shoot {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .trouble-shoot__title-main {
    font-size: 2.8rem;
  }
  
  .trouble-shoot__paragraph {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .trouble-shoot__solutions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .trouble-shoot__solutions {
    grid-template-columns: 1fr;
  }
  
  .trouble-shoot__solution-card {
    transform: none !important;
    margin: 0 !important;
  }
  
  .trouble-shoot__solution-card:hover {
    transform: translateY(-5px) !important;
  }
}

@media (max-width: 480px) {
  .trouble-shoot {
    padding: 2rem 0;
  }
  
  .trouble-shoot__inner {
    padding: 0 0.5rem;
  }
  
  .trouble-shoot__title-accent {
    font-size: 1rem;
  }
  
  .trouble-shoot__title-main {
    font-size: 2.2rem;
  }
  
  .trouble-shoot__paragraph {
    transform: none !important;
    border-left: 4px solid hsl(162, 70%, 60%);
    border-right: none !important;
    font-size: 0.95rem;
    padding: 0.8rem;
  }
  
  .trouble-shoot__solution-card {
    padding: 1.2rem 1rem;
  }
  
  .trouble-shoot__solution-icon {
    width: 40px;
    height: 40px;
  }
  
  .trouble-shoot__solution-icon i {
    font-size: 1.3rem;
  }
  
  .trouble-shoot__solution-title {
    font-size: 1.1rem;
  }
  
  .trouble-shoot__footer {
    margin-top: 2rem;
  }
  
  .trouble-shoot__disclaimer {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    width: 100%;
  }
  
  .trouble-shoot__animation-area {
    animation: none;
  }
  
  .trouble-shoot__shape {
    animation: none !important;
    opacity: 0.1;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.play-safe {
  display: block;
  background: linear-gradient(135deg, hsl(42, 70%, 92%) 0%, hsl(42, 70%, 88%) 100%);
  padding: 5rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.play-safe::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: hsl(162, 70%, 40%);
  opacity: 0.03;
  border-radius: 50%;
  z-index: 0;
}

.play-safe::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: hsl(42, 70%, 60%);
  opacity: 0.05;
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  z-index: 0;
}

.play-safe__inner {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

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

.play-safe__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.play-safe__title-accent {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: hsl(162, 70%, 40%);
}

.play-safe__title-main {
  font-family: 'Pacifico', cursive;
  font-size: 3.2rem;
  color: hsl(210, 15%, 15%);
}

.play-safe__split-layout {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: stretch;
}

.play-safe__text-column {
  flex: 0 0 40%;
}

.play-safe__text-card {
  background: hsl(42, 70%, 95%);
  padding: 2rem;
  border-radius: 24px;
  transform: skewX(-2deg);
  box-shadow: 12px 12px 0 hsl(42, 50%, 70%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.play-safe__paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(210, 15%, 20%);
  transform: skewX(2deg);
}

.play-safe__text-link {
  color: hsl(162, 70%, 40%);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  display: inline-block;
}

.play-safe__text-link:hover {
  border-bottom-color: hsl(162, 70%, 40%);
  transform: translateY(-2px);
}

.play-safe__partners-column {
  flex: 0 0 60%;
}

.play-safe__partners-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: hsl(42, 70%, 95%);
  padding: 2rem;
  border-radius: 24px;
  transform: skewX(2deg);
  box-shadow: -12px 12px 0 hsl(42, 50%, 70%);
  position: relative;
}

.play-safe__partner-link {
  display: block;
  transition: all 0.3s ease;
  filter: grayscale(10%);
  opacity: 0.8;
}

.play-safe__partner-link--1 {
  transform: rotate(-1deg) translateY(-5px);
}

.play-safe__partner-link--2 {
  transform: rotate(2deg) translateY(10px);
}

.play-safe__partner-link--3 {
  transform: rotate(-2deg) translateY(-8px);
}

.play-safe__partner-link--4 {
  transform: rotate(3deg) translateY(5px);
}

.play-safe__partner-link:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: rotate(0) translateY(-8px) scale(1.02);
}

.play-safe__partner-image {
  width: 100%;
  max-width: 278px;
  height: 68px;
  object-fit: contain;
  display: block;
  background: hsl(43, 99%, 29%);
  border-radius: 12px;
  padding: 0.3rem;
  border: 2px solid hsl(42, 70%, 80%);
}

.play-safe__age-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(350, 80%, 50%) 0%, hsl(350, 90%, 40%) 100%);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  animation: pulse-4600 2s ease-in-out infinite;
  border: 3px solid white;
}

.play-safe__age-icon {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.play-safe__age-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-safe__partners-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: hsl(210, 15%, 30%);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

@keyframes pulse-4600 {
  0%, 100% {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  }
  50% {
    transform: rotate(5deg) scale(1.2);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  }
}

@media (max-width: 1080px) {
  .play-safe__split-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .play-safe__text-column,
  .play-safe__partners-column {
    flex: 0 0 100%;
  }
  
  .play-safe__text-card {
    transform: skewX(0);
  }
  
  .play-safe__paragraph {
    transform: skewX(0);
  }
  
  .play-safe__partners-grid {
    transform: skewX(0);
  }
}

@media (max-width: 920px) {
  .play-safe__partners-grid {
    justify-content: center;
  }
  
  .play-safe__partner-image {
    max-width: 240px;
  }
}

@media (max-width: 750px) {
  .play-safe {
    padding: 3rem 0;
  }
  
  .play-safe__title-main {
    font-size: 2.8rem;
  }
  
  .play-safe__text-card {
    padding: 1.5rem;
  }
  
  .play-safe__partners-grid {
    padding: 1.5rem;
  }
}

@media (max-width: 620px) {
  .play-safe__partners-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .play-safe__partner-link {
    transform: none !important;
  }
  
  .play-safe__partner-image {
    max-width: 278px;
  }
  
  .play-safe__age-badge {
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .play-safe {
    padding: 2rem 0;
  }
  
  .play-safe__inner {
    padding: 0 0.5rem;
  }
  
  .play-safe__title-accent {
    font-size: 1rem;
  }
  
  .play-safe__title-main {
    font-size: 2.2rem;
  }
  
  .play-safe__text-card {
    padding: 1rem;
    box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
  }
  
  .play-safe__paragraph {
    font-size: 0.95rem;
  }
  
  .play-safe__partners-grid {
    padding: 1rem;
    box-shadow: -8px 8px 0 hsl(42, 50%, 70%);
  }
  
  .play-safe__partner-image {
    max-width: 100%;
    height: 58px;
  }
  
  .play-safe__age-badge {
    width: 70px;
    height: 70px;
  }
  
  .play-safe__age-icon {
    font-size: 2rem;
  }
  
  .play-safe__age-text {
    font-size: 0.8rem;
  }
  
  .play-safe__partners-note {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .play-safe__age-badge {
    animation: none;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.bottom-site {
  display: block;
  background: linear-gradient(135deg, hsl(42, 70%, 88%) 0%, hsl(42, 70%, 82%) 100%);
  padding: 4rem 0 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 6px solid hsl(162, 70%, 40%);
}

.bottom-site::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: hsl(162, 70%, 40%);
  opacity: 0.03;
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  transform: rotate(20deg);
  z-index: 0;
}

.bottom-site::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: hsl(42, 70%, 60%);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.bottom-site__inner {
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

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

.bottom-site__block {
  background: hsl(42, 70%, 95%);
  padding: 1.8rem .5rem;
  border-radius: 24px;
  box-shadow: 8px 8px 0 hsl(42, 50%, 70%);
  position: relative;
}

.bottom-site__block--logo {
  transform: rotate(-1deg);
}

.bottom-site__block--games {
  transform: rotate(1deg) translateY(10px);
}

.bottom-site__block--info {
  transform: rotate(-2deg) translateY(-5px);
}

.bottom-site__block--legal {
  transform: rotate(2deg) translateY(8px);
}

.bottom-site__block--contact {
  transform: rotate(-1deg) translateY(-8px);
}

.bottom-site__logo-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.bottom-site__logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(4px 4px 0 hsl(42, 50%, 70%));
}

.bottom-site__logo-text {
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  background: linear-gradient(135deg, hsl(210, 15%, 15%) 0%, hsl(162, 70%, 40%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.bottom-site__responsible {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 1rem;
  background: hsl(162, 70%, 40%);
  border-radius: 50px;
  transform: skewX(-5deg);
  color: white;
  font-size: 0.9rem;
}

.bottom-site__responsible i {
  font-size: 1.3rem;
  transform: skewX(5deg);
  color: white;
}

.bottom-site__responsible span {
  transform: skewX(5deg);
}

.bottom-site__block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: hsl(210, 15%, 15%);
  border-bottom: 3px solid hsl(162, 70%, 40%);
  padding-bottom: 0.5rem;
}

.bottom-site__block-title i {
  color: hsl(162, 70%, 40%);
  font-size: 1.3rem;
}

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

.bottom-site__link {
  display: inline-flex;
  align-items: center;
  color: hsl(210, 15%, 25%);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  transition: all 0.2s ease;
  width: fit-content;
  border: 1px solid transparent;
}

.bottom-site__link::before {
  content: '▹';
  color: hsl(162, 70%, 40%);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.bottom-site__link--all {
  background: hsl(162, 70%, 40%);
  color: white;
  font-weight: 700;
}

.bottom-site__link--all::before {
  color: white;
  content: '★';
}

.bottom-site__link:hover {
  background: hsl(162, 70%, 40%);
  color: white;
  transform: translateX(5px);
  border-color: transparent;
}

.bottom-site__link:hover::before {
  color: white;
}

.bottom-site__contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bottom-site__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: hsl(210, 15%, 20%);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.6rem 1rem;
  border-radius: 50px;
  transform: skewX(-3deg);
}

.bottom-site__contact-item i {
  color: hsl(162, 70%, 40%);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  transform: skewX(3deg);
}

.bottom-site__contact-item span {
  transform: skewX(3deg);
}

.bottom-site__contact-link {
  color: hsl(210, 15%, 20%);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  transform: skewX(3deg);
  display: inline-block;
}

.bottom-site__contact-link:hover {
  color: hsl(162, 70%, 40%);
  border-bottom-color: hsl(162, 70%, 40%);
}

.bottom-site__bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 2px dashed hsl(162, 70%, 40%);
  margin-top: 1rem;
}

.bottom-site__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: hsl(210, 15%, 30%);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transform: rotate(-1deg);
}

.bottom-site__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(350, 80%, 50%);
  border-radius: 50px;
  padding: 0.3rem 1.2rem;
  transform: rotate(2deg) scale(1.1);
  border: 2px solid white;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.bottom-site__age-number {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.bottom-site__age-plus {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-left: 0.2rem;
}

@media (max-width: 1080px) {
  .bottom-site__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 920px) {
  .bottom-site__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .bottom-site__grid {
    grid-template-columns: 1fr;
  }
  
  .bottom-site__block {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .bottom-site {
    padding: 2rem 0 1rem;
  }
  
  .bottom-site__inner {
    padding: 0 0.2rem;
  }
  
  .bottom-site__block {
    padding: 1.2rem 0.1rem;
    box-shadow: 4px 4px 0 hsl(42, 50%, 70%);
  }
  
  .bottom-site__logo-area {
    gap: 0.6rem;
  }
  
  .bottom-site__logo-image {
    width: 50px;
    height: 50px;
  }
  
  .bottom-site__logo-text {
    font-size: 1.2rem;
  }
  
  .bottom-site__responsible {
    font-size: 0.8rem;
    padding: 0.6rem;
    justify-content: center;
    text-align: center;
  }
  
  .bottom-site__block-title {
    font-size: 1.1rem;
  }
  
  .bottom-site__link {
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
  }
  
  .bottom-site__contact-item {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
  
  .bottom-site__bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 1rem;
  }
  
  .bottom-site__copyright {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.age-verify {
  position: fixed;
  top: 20px;
  left: 20px;
  background: hsl(25, 80%, 95%);
  border: 4px solid hsl(25, 80%, 45%);
  border-radius: 50px 24px 50px 24px;
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: 15px 15px 0 hsl(25, 50%, 70%);
  z-index: 9999;
  transform: rotate(-2deg);
  font-family: 'Inter', sans-serif;
  display: block;
}

.age-verify__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.age-verify__header i {
  font-size: 2.5rem;
  color: hsl(25, 80%, 45%);
}

.age-verify__title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.3rem;
  margin: 0;
  color: hsl(25, 80%, 25%);
}

.age-verify__text {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: hsl(25, 80%, 25%);
}

.age-verify__buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.age-verify__confirm {
  background: hsl(25, 80%, 45%);
  color: white;
  border: 2px solid transparent;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  cursor: pointer;
  transform: rotate(-1deg);
  transition: all 0.2s ease;
}

.age-verify__confirm:hover {
  background: transparent;
  border-color: hsl(25, 80%, 45%);
  color: hsl(25, 80%, 45%);
  transform: rotate(0) translateY(-2px);
}

.age-verify__exit {
  background: transparent;
  color: hsl(25, 80%, 45%);
  border: 2px solid hsl(25, 80%, 45%);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  cursor: pointer;
  transform: rotate(1deg);
  transition: all 0.2s ease;
}

.age-verify__exit:hover {
  background: hsl(25, 80%, 45%);
  color: white;
  transform: rotate(0) translateY(-2px);
}

.cookie-notice {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: hsl(200, 70%, 95%);
  border: 4px solid hsl(200, 70%, 40%);
  border-radius: 24px 50px 24px 50px;
  padding: 1.5rem;
  max-width: 300px;
  box-shadow: -15px 15px 0 hsl(200, 50%, 70%);
  z-index: 9999;
  transform: rotate(2deg);
  font-family: 'Inter', sans-serif;
  display: block;
}

.cookie-notice__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-notice__header i {
  font-size: 2rem;
  color: hsl(200, 70%, 40%);
}

.cookie-notice__title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.2rem;
  margin: 0;
  color: hsl(200, 70%, 25%);
}

.cookie-notice__text {
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: hsl(200, 70%, 25%);
}

.cookie-notice__link {
  color: hsl(200, 70%, 40%);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid hsl(200, 70%, 40%);
}

.cookie-notice__link:hover {
  border-bottom-style: dashed;
}

.cookie-notice__button {
  width: 100%;
  background: hsl(200, 70%, 40%);
  color: white;
  border: 2px solid transparent;
  padding: 0.8rem;
  border-radius: 50px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  cursor: pointer;
  transform: rotate(-1deg);
  transition: all 0.2s ease;
}

.cookie-notice__button:hover {
  background: transparent;
  border-color: hsl(200, 70%, 40%);
  color: hsl(200, 70%, 40%);
  transform: rotate(0) translateY(-2px);
}

@media (max-width: 480px) {
  .age-verify,
  .cookie-notice {
    max-width: calc(100% - 40px);
    transform: none !important;
    left: 20px;
    right: 20px;
  }
  
  .age-verify {
    top: 20px;
  }
  
  .cookie-notice {
    bottom: 20px;
  }
}