@font-face {
    font-family: 'Inter';
    src: url('/nordic-simplicity/type-foundry/inter.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --backdrop-light: hsl(60, 30%, 96%);
    --ink-deep: hsl(210, 25%, 16%);
    --peach-glow: hsl(30, 100%, 69%);
    --teal-mist: hsl(195, 80%, 36%);
    --pure-white: hsl(0, 0%, 100%);
    --charcoal-soft: hsl(210, 15%, 25%);
    --border-soft: hsla(210, 15%, 25%, 0.1);
    
    --content-max: 76rem;
    --space-unit: 1rem;
    --space-small: calc(var(--space-unit) * 0.5);
    --space-medium: calc(var(--space-unit) * 1.5);
    --space-large: calc(var(--space-unit) * 2.5);
    
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--ink-deep);
    background-color: var(--backdrop-light);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

.material-icons {
    font-size: 1.5rem;
    vertical-align: middle;
    color: var(--teal-mist);
}

@keyframes smoothRise {
    0% {
        opacity: 0;
        transform: translateY(1.2rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateX(-1.2rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.topBar--light__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-large) var(--space-medium);
    gap: var(--space-large);
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-soft);
}

.topBar--light__block {
    flex: 1;
}

.topBar--light__block--left {
    display: flex;
    flex-direction: column;
    gap: var(--space-medium);
}

.topBar--light__topRow {
    margin-bottom: var(--space-small);
}

.topBar--light__homeLink {
    display: inline-flex;
    align-items: center;
    gap: var(--space-small);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink-deep);
    transition: color 0.2s ease;
}

.topBar--light__homeLink:hover {
    color: var(--peach-glow);
}

.topBar--light__homeIcon {
    color: var(--teal-mist);
    font-size: 2rem;
}

.topBar--light__siteName {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.topBar--light__midRow {
    margin: var(--space-small) 0;
}

.topBar--light__gamesLink {
    display: inline-flex;
    align-items: center;
    gap: var(--space-small);
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    padding: var(--space-small) var(--space-medium);
    border-radius: 2rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topBar--light__gamesLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 183, 120, 0.3);
}

.topBar--light__gamesLink .material-icons {
    color: var(--ink-deep);
    font-size: 1.2rem;
}

.topBar--light__bottomRow {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-small);
    justify-content: space-evenly;
    margin-top: var(--space-small);
}

.topBar--light__navItem {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background-color: var(--backdrop-light);
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--ink-deep);
    transition: all 0.2s ease;
    flex: 0 1 auto;
    min-width: fit-content;
}

.topBar--light__navItem:hover {
    background-color: var(--teal-mist);
    color: var(--pure-white);
}

.topBar--light__navItem:hover .material-icons {
    color: var(--pure-white);
}

.topBar--light__navItem .material-icons {
    font-size: 1.1rem;
    color: var(--teal-mist);
}

.topBar--light__block--right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.topBar--light__messageBox {
    display: flex;
    align-items: center;
    gap: var(--space-small);
    background-color: var(--teal-mist);
    color: var(--pure-white);
    padding: var(--space-small) var(--space-medium);
    border-radius: 3rem;
    max-width: 280px;
}

.topBar--light__messageBox .material-icons {
    color: var(--pure-white);
    font-size: 1.8rem;
}

.topBar--light__messageText {
    font-size: 0.9rem;
    line-height: 1.3;
}

@media (max-width: 56rem) {
    .topBar--light__container {
        flex-direction: column;
    }
    
    .topBar--light__block--right {
        justify-content: center;
        width: 100%;
    }
    
    .topBar--light__messageBox {
        max-width: 100%;
        justify-content: center;
    }
}

@media (max-width: 36rem) {
    .topBar--light__bottomRow {
        justify-content: center;
    }
    
    .topBar--light__navItem {
        flex: 0 1 calc(50% - 0.5rem);
        justify-content: center;
    }
}

@media (max-width: 24rem) {
    .topBar--light__navItem {
        flex: 1 1 100%;
    }
}

.popupNotice--age__card {
    position: fixed;
    top: 2rem;
    right: 2rem;
    max-width: 340px;
    background-color: var(--pure-white);
    border-radius: 2rem 2rem 2rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    animation: smoothRise 0.4s ease;
    border-left: 4px solid var(--peach-glow);
}

.popupNotice--age__content {
    padding: var(--space-large);
    display: flex;
    flex-direction: column;
    gap: var(--space-medium);
}

.popupNotice--age__icon {
    font-size: 2.5rem;
    color: var(--peach-glow);
    align-self: flex-start;
}

.popupNotice--age__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink-deep);
    margin: 0;
}

.popupNotice--age__text {
    color: var(--charcoal-soft);
    line-height: 1.5;
    margin: 0;
}

.popupNotice--age__actions {
    display: flex;
    gap: var(--space-small);
    flex-wrap: wrap;
}

.popupNotice--age__button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 3rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    flex: 1 1 auto;
    justify-content: center;
}

.popupNotice--age__button--confirm {
    background-color: var(--teal-mist);
    color: var(--pure-white);
}

.popupNotice--age__button--confirm:hover {
    background-color: var(--ink-deep);
}

.popupNotice--age__button--exit {
    background-color: var(--backdrop-light);
    color: var(--ink-deep);
    border: 1px solid var(--border-soft);
}

.popupNotice--age__button--exit:hover {
    background-color: var(--peach-glow);
    color: var(--ink-deep);
}

.popupNotice--age__button .material-icons {
    font-size: 1.1rem;
}

@media (max-width: 48rem) {
    .popupNotice--age__card {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        border-radius: 1.5rem;
    }
    
    .popupNotice--age__actions {
        flex-direction: column;
    }
}

@media (max-width: 24rem) {
    .popupNotice--age__content {
        padding: var(--space-medium);
    }
}

.noticeBanner--cookie__wrapper {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background-color: var(--ink-deep);
    border-radius: 3rem 3rem 0.5rem 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 99;
    animation: fadeSlide 0.4s ease;
    border-bottom: 4px solid var(--peach-glow);
}

.noticeBanner--cookie__inner {
    padding: var(--space-large);
    display: flex;
    align-items: center;
    gap: var(--space-medium);
    flex-wrap: wrap;
    color: var(--pure-white);
}

.noticeBanner--cookie__icon {
    font-size: 2.2rem;
    color: var(--peach-glow);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
}

.noticeBanner--cookie__textGroup {
    flex: 1;
    min-width: 200px;
}

.noticeBanner--cookie__mainText {
    font-weight: 500;
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
}

.noticeBanner--cookie__smallText {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

.noticeBanner--cookie__dismiss {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    border: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.noticeBanner--cookie__dismiss:hover {
    background-color: var(--pure-white);
    transform: scale(1.02);
}

.noticeBanner--cookie__dismiss .material-icons {
    font-size: 1.1rem;
    color: var(--ink-deep);
}

@media (max-width: 56rem) {
    .noticeBanner--cookie__wrapper {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
        border-radius: 2rem;
    }
    
    .noticeBanner--cookie__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .noticeBanner--cookie__dismiss {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 24rem) {
    .noticeBanner--cookie__inner {
        padding: var(--space-medium);
    }
}

.welcomeZone--main__area {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--ink-deep);
    isolation: isolate;
}

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

.welcomeZone--main__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

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

.welcomeZone--main__rainParticle {
    position: absolute;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: rainFlow 3s linear infinite;
    opacity: 0;
}

.welcomeZone--main__rainParticle:nth-child(1) { left: 10%; animation-delay: 0s; height: 40px; }
.welcomeZone--main__rainParticle:nth-child(2) { left: 20%; animation-delay: 0.5s; height: 70px; }
.welcomeZone--main__rainParticle:nth-child(3) { left: 30%; animation-delay: 1s; height: 50px; }
.welcomeZone--main__rainParticle:nth-child(4) { left: 40%; animation-delay: 1.5s; height: 80px; }
.welcomeZone--main__rainParticle:nth-child(5) { left: 50%; animation-delay: 2s; height: 45px; }
.welcomeZone--main__rainParticle:nth-child(6) { left: 60%; animation-delay: 2.5s; height: 65px; }
.welcomeZone--main__rainParticle:nth-child(7) { left: 70%; animation-delay: 3s; height: 55px; }
.welcomeZone--main__rainParticle:nth-child(8) { left: 80%; animation-delay: 0.8s; height: 75px; }
.welcomeZone--main__rainParticle:nth-child(9) { left: 90%; animation-delay: 1.8s; height: 45px; }
.welcomeZone--main__rainParticle:nth-child(10) { left: 15%; animation-delay: 2.2s; height: 85px; }
.welcomeZone--main__rainParticle:nth-child(11) { left: 25%; animation-delay: 0.3s; height: 50px; }
.welcomeZone--main__rainParticle:nth-child(12) { left: 35%; animation-delay: 1.3s; height: 70px; }
.welcomeZone--main__rainParticle:nth-child(13) { left: 45%; animation-delay: 2.7s; height: 60px; }
.welcomeZone--main__rainParticle:nth-child(14) { left: 55%; animation-delay: 0.1s; height: 40px; }
.welcomeZone--main__rainParticle:nth-child(15) { left: 65%; animation-delay: 1.1s; height: 90px; }

@keyframes rainFlow {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    80% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(1000%) rotate(3deg);
        opacity: 0;
    }
}

.welcomeZone--main__contentWrapper {
    position: relative;
    z-index: 4;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-large);
    color: var(--pure-white);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-large);
    align-items: start;
}

.welcomeZone--main__mainTitle {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateX(-5%);
}

.welcomeZone--main__titleLine {
    display: block;
}

.welcomeZone--main__titleLine--accent {
    color: var(--peach-glow);
}

.welcomeZone--main__description {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    padding: var(--space-medium);
    border-radius: 2rem 2rem 2rem 0;
    border-left: 4px solid var(--teal-mist);
    align-self: center;
}

.welcomeZone--main__linkGroup {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    display: flex;
    gap: var(--space-medium);
    justify-content: flex-end;
    margin-top: var(--space-medium);
}

.welcomeZone--main__primaryLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    border-radius: 3rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.welcomeZone--main__primaryLink:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 183, 120, 0.5);
}

.welcomeZone--main__secondaryLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--pure-white);
    border: 2px solid var(--teal-mist);
    border-radius: 3rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.welcomeZone--main__secondaryLink:hover {
    background-color: var(--teal-mist);
    color: var(--pure-white);
}

.welcomeZone--main__benefitsGrid {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-large);
    margin-top: var(--space-large);
    position: relative;
}

.welcomeZone--main__benefitCard {
    flex: 0 1 240px;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: var(--space-large);
    border-radius: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-small);
    border: 1px solid rgba(255,255,255,0.2);
}

.welcomeZone--main__benefitCard--first {
    transform: translateY(-20px);
}

.welcomeZone--main__benefitCard--second {
    transform: translateY(20px);
}

.welcomeZone--main__benefitCard--third {
    transform: translateY(-10px);
}

.welcomeZone--main__benefitCard:hover {
    transform: translateY(-30px) scale(1.05);
    background-color: rgba(255,255,255,0.15);
}

.welcomeZone--main__benefitIcon {
    font-size: 3rem;
    color: var(--peach-glow);
    margin-bottom: var(--space-small);
}

.welcomeZone--main__benefitTitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.welcomeZone--main__benefitText {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 68rem) {
    .welcomeZone--main__contentWrapper {
        grid-template-columns: 1fr;
        gap: var(--space-medium);
    }
    
    .welcomeZone--main__mainTitle {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
        transform: translateX(0);
        font-size: 2.8rem;
        text-align: center;
    }
    
    .welcomeZone--main__description {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .welcomeZone--main__linkGroup {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        justify-content: center;
    }
    
    .welcomeZone--main__benefitsGrid {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
}

@media (max-width: 48rem) {
    .welcomeZone--main__mainTitle {
        font-size: 2.2rem;
    }
    
    .welcomeZone--main__benefitsGrid {
        flex-direction: column;
        align-items: center;
    }
    
    .welcomeZone--main__benefitCard {
        width: 100%;
        max-width: 300px;
    }
    
    .welcomeZone--main__benefitCard--first,
    .welcomeZone--main__benefitCard--second,
    .welcomeZone--main__benefitCard--third {
        transform: translateY(0);
    }
    
    .welcomeZone--main__rainLayer {
        display: none;
    }
}

@media (max-width: 36rem) {
    .welcomeZone--main__contentWrapper {
        padding: var(--space-medium);
    }
    
    .welcomeZone--main__linkGroup {
        flex-direction: column;
        width: 100%;
    }
    
    .welcomeZone--main__primaryLink,
    .welcomeZone--main__secondaryLink {
        width: 100%;
        justify-content: center;
    }
}

.gamePortal--featured__section {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-large) var(--space-medium);
    background-color: var(--backdrop-light);
}

.gamePortal--featured__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-medium);
    margin-bottom: var(--space-large);
    position: relative;
}

.gamePortal--featured__headerIcon {
    font-size: 3rem;
    color: var(--teal-mist);
    opacity: 0.3;
}

.gamePortal--featured__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
    text-align: right;
}

.gamePortal--featured__titleLine {
    display: block;
}

.gamePortal--featured__titleLine--accent {
    color: var(--peach-glow);
}

.gamePortal--featured__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-large);
}

.gamePortal--featured__card {
    flex: 0 1 calc(33.333% - var(--space-large));
    max-width: 300px;
    min-height: 300px;
    position: relative;
    border-radius: 3rem 1rem 3rem 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.gamePortal--featured__card:nth-child(2) {
    border-radius: 1rem 3rem 1rem 3rem;
}

.gamePortal--featured__card:nth-child(3) {
    border-radius: 3rem 3rem 1rem 1rem;
}

.gamePortal--featured__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.gamePortal--featured__picture {
    width: 100%;
    height: 100%;
    display: block;
}

.gamePortal--featured__picture img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gamePortal--featured__card:hover .gamePortal--featured__picture img {
    transform: scale(1.1);
}

.gamePortal--featured__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-medium);
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: var(--space-medium);
}

.gamePortal--featured__gameName {
    color: var(--pure-white);
    font-size: 1.8rem;
    font-family: var(--font-display);
    margin: 0;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gamePortal--featured__card:hover .gamePortal--featured__gameName {
    transform: translateY(0);
}

.gamePortal--featured__gameLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
    box-shadow: 0 0 10px rgba(255, 183, 120, 0.5);
    border: 2px solid var(--pure-white);
}

.gamePortal--featured__card:hover .gamePortal--featured__gameLink {
    transform: translateY(0);
}

.gamePortal--featured__gameLink:hover {
    background-color: var(--pure-white);
    box-shadow: 0 0 20px rgba(255, 183, 120, 0.8), 0 0 40px rgba(255, 183, 120, 0.4);
    transform: scale(1.05);
}

.gamePortal--featured__gameLink .material-icons {
    color: var(--ink-deep);
    font-size: 1.4rem;
}

@media (max-width: 68rem) {
    .gamePortal--featured__grid {
        gap: var(--space-medium);
    }
    
    .gamePortal--featured__card {
        flex: 0 1 calc(33.333% - var(--space-medium));
    }
    
    .gamePortal--featured__gameName {
        font-size: 1.4rem;
    }
    
    .gamePortal--featured__gameLink {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 48rem) {
    .gamePortal--featured__header {
        justify-content: center;
    }
    
    .gamePortal--featured__title {
        text-align: center;
        font-size: 2rem;
    }
    
    .gamePortal--featured__headerIcon {
        display: none;
    }
    
    .gamePortal--featured__grid {
        flex-direction: column;
        gap: var(--space-large);
    }

    .gamePortal--featured__section {
        padding: 2rem 0.3rem;
    }
    
    .gamePortal--featured__card {
        flex: 1 1 100%;
        max-width: 280px;
        aspect-ratio: 16 / 9;
    }
    
    .gamePortal--featured__gameName {
        font-size: 1.8rem;
    }
    
    .gamePortal--featured__gameLink {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 36rem) {
    .gamePortal--featured__title {
        font-size: 1.8rem;
    }
    
    .gamePortal--featured__gameName {
        font-size: 1.5rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .gamePortal--featured__overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    }
    
    .gamePortal--featured__gameName {
        transform: translateY(0);
        font-size: 1.5rem;
    }
    
    .gamePortal--featured__gameLink {
        transform: translateY(0);
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

.responsiblePlay--awareness__zone {
    background-color: var(--ink-deep);
    color: var(--pure-white);
    padding: var(--space-large) 0;
    border-top: 4px solid var(--peach-glow);
    border-bottom: 4px solid var(--teal-mist);
}

.responsiblePlay--awareness__container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-medium);
    display: flex;
    gap: var(--space-large);
    align-items: flex-start;
}

.responsiblePlay--awareness__textBlock {
    flex: 0 1 60%;
}

.responsiblePlay--awareness__heading {
    display: flex;
    align-items: center;
    gap: var(--space-small);
    margin-bottom: var(--space-large);
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--peach-glow);
}

.responsiblePlay--awareness__headingIcon {
    font-size: 3rem;
    color: var(--teal-mist);
}

.responsiblePlay--awareness__textColumns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-large);
    margin-bottom: var(--space-large);
}

.responsiblePlay--awareness__paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

.responsiblePlay--awareness__textLink {
    color: var(--peach-glow);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
    font-weight: 500;
    display: inline-block;
    position: relative;
}

.responsiblePlay--awareness__textLink:hover {
    text-decoration-color: var(--peach-glow);
    transform: translateX(4px);
}

.responsiblePlay--awareness__localInfo {
    display: flex;
    align-items: center;
    gap: var(--space-small);
    padding: var(--space-medium);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3rem;
    font-size: 0.9rem;
    border-left: 4px solid var(--teal-mist);
}

.responsiblePlay--awareness__localInfo .material-icons {
    color: var(--teal-mist);
    font-size: 1.8rem;
}

.responsiblePlay--awareness__phoneLink,
.responsiblePlay--awareness__emailLink {
    color: var(--peach-glow);
    text-decoration: none;
    border-bottom: 1px dotted var(--peach-glow);
}

.responsiblePlay--awareness__phoneLink:hover,
.responsiblePlay--awareness__emailLink:hover {
    border-bottom: 1px solid var(--peach-glow);
}

.responsiblePlay--awareness__partnersBlock {
    flex: 0 1 40%;
    background-color: rgba(255, 255, 255, 0.03);
    padding: var(--space-large);
    border-radius: 3rem 3rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}

.responsiblePlay--awareness__partnersBlock::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,183,120,0.1) 0%, transparent 70%);
    z-index: 0;
}

.responsiblePlay--awareness__partnersTitle {
    font-size: 1.5rem;
    font-family: var(--font-display);
    margin: 0 0 var(--space-large) 0;
    color: var(--teal-mist);
    position: relative;
    z-index: 1;
    text-align: center;
}

.responsiblePlay--awareness__partnersGrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-medium);
    position: relative;
    z-index: 1;
}

.responsiblePlay--awareness__partnerLink {
    display: block;
    width: 280px;
    height: 80px;
    transition: all 0.3s ease;
    position: relative;
}

.responsiblePlay--awareness__partnerLink--first {
    align-self: flex-start;
    transform: translateX(-20px);
}

.responsiblePlay--awareness__partnerLink--second {
    align-self: center;
    transform: translateY(-10px);
}

.responsiblePlay--awareness__partnerLink--third {
    align-self: flex-end;
    transform: translateX(20px) translateY(10px);
}

.responsiblePlay--awareness__partnerLink--fourth {
    align-self: center;
    transform: translateY(-5px);
}

.responsiblePlay--awareness__partnerLink:hover {
    transform: scale(1.05) translateY(-5px);
    filter: brightness(1.1);
    z-index: 10;
}

.responsiblePlay--awareness__partnerImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--peach-glow);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.responsiblePlay--awareness__ageDisclaimer {
    width: 280px;
    height: 80px;
    background: linear-gradient(135deg, var(--peach-glow), var(--teal-mist));
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 183, 120, 0.5), 0 0 40px rgba(0, 206, 209, 0.3);
    animation: pulseGlow 2s infinite ease-in-out;
    position: relative;
    align-self: center;
    margin: var(--space-small) 0;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 183, 120, 0.5), 0 0 40px rgba(0, 206, 209, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 183, 120, 0.8), 0 0 60px rgba(0, 206, 209, 0.5);
    }
}

.responsiblePlay--awareness__ageNumber {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--pure-white);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.responsiblePlay--awareness__ageText {
    font-size: 0.8rem;
    color: var(--pure-white);
    opacity: 0.9;
    font-weight: 500;
}

.responsiblePlay--awareness__partnersNote {
    text-align: center;
    margin-top: var(--space-large);
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

@media (max-width: 68rem) {
    .responsiblePlay--awareness__container {
        flex-direction: column;
    }
    
    .responsiblePlay--awareness__textBlock,
    .responsiblePlay--awareness__partnersBlock {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .responsiblePlay--awareness__textColumns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 48rem) {
    .responsiblePlay--awareness__textColumns {
        grid-template-columns: 1fr;
        gap: var(--space-medium);
    }
    
    .responsiblePlay--awareness__heading {
        font-size: 1.8rem;
    }
    
    .responsiblePlay--awareness__partnerLink--first,
    .responsiblePlay--awareness__partnerLink--second,
    .responsiblePlay--awareness__partnerLink--third,
    .responsiblePlay--awareness__partnerLink--fourth {
        align-self: center;
        transform: none;
    }
    
    .responsiblePlay--awareness__partnerLink:hover {
        transform: scale(1.05);
    }
}

@media (max-width: 36rem) {
    .responsiblePlay--awareness__partnersBlock {
        padding: var(--space-medium);
    }
    
    .responsiblePlay--awareness__partnerLink,
    .responsiblePlay--awareness__ageDisclaimer {
        width: 240px;
        height: 70px;
    }
    
    .responsiblePlay--awareness__ageNumber {
        font-size: 2rem;
    }
    
    .responsiblePlay--awareness__localInfo {
        flex-direction: column;
        text-align: center;
        border-radius: 2rem;
    }
}

.guideSection--howItWorks__wrapper {
    background: linear-gradient(135deg, var(--backdrop-light) 0%, var(--pure-white) 100%);
    padding: var(--space-large) 0;
    position: relative;
    overflow: hidden;
}

.guideSection--howItWorks__wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,206,209,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.guideSection--howItWorks__container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-medium);
    position: relative;
    z-index: 2;
}

.guideSection--howItWorks__header {
    text-align: left;
    margin-bottom: var(--space-large);
    position: relative;
    padding-left: var(--space-large);
    border-left: 6px solid var(--teal-mist);
}

.guideSection--howItWorks__headerIcon {
    font-size: 3.5rem;
    color: var(--teal-mist);
    margin-bottom: var(--space-small);
    opacity: 0.5;
}

.guideSection--howItWorks__title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--ink-deep);
    margin: 0 0 var(--space-small) 0;
    line-height: 1.2;
}

.guideSection--howItWorks__subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-soft);
    max-width: 600px;
    margin: 0;
}

.guideSection--howItWorks__stepsGrid {
    display: flex;
    gap: var(--space-large);
    margin-bottom: var(--space-large);
    position: relative;
}

.guideSection--howItWorks__stepCard {
    flex: 1;
    background-color: var(--pure-white);
    padding: var(--space-large);
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-soft);
}

.guideSection--howItWorks__stepCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.guideSection--howItWorks__stepNumber {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--teal-mist);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,206,209,0.3);
}

.guideSection--howItWorks__stepIcon {
    font-size: 3rem;
    color: var(--peach-glow);
    margin-bottom: var(--space-medium);
    display: block;
}

.guideSection--howItWorks__stepTitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 var(--space-small) 0;
    color: var(--ink-deep);
}

.guideSection--howItWorks__stepText {
    color: var(--charcoal-soft);
    line-height: 1.6;
    margin-bottom: var(--space-medium);
    font-size: 0.95rem;
}

.guideSection--howItWorks__stepNote {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: var(--space-small);
    border-top: 1px dashed var(--border-soft);
    color: var(--teal-mist);
    font-size: 0.85rem;
    font-weight: 500;
}

.guideSection--howItWorks__stepNote .material-icons {
    font-size: 1.1rem;
    color: var(--teal-mist);
}

.guideSection--howItWorks__extraInfo {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: var(--space-large);
    margin-top: var(--space-large);
    padding-top: var(--space-large);
    border-top: 2px solid var(--border-soft);
}

.guideSection--howItWorks__infoBlock {
    display: flex;
    gap: var(--space-medium);
    align-items: flex-start;
}

.guideSection--howItWorks__infoIcon {
    font-size: 2rem;
    color: var(--teal-mist);
    background-color: rgba(0,206,209,0.1);
    padding: 0.5rem;
    border-radius: 1rem;
}

.guideSection--howItWorks__infoContent h4 {
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    color: var(--ink-deep);
}

.guideSection--howItWorks__infoContent p {
    font-size: 0.9rem;
    color: var(--charcoal-soft);
    margin: 0;
    line-height: 1.5;
}

.guideSection--howItWorks__cta {
    grid-column: 3 / 4;
    text-align: right;
}

.guideSection--howItWorks__ctaLink {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.guideSection--howItWorks__ctaLink:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255,183,120,0.4);
}

.guideSection--howItWorks__ctaNote {
    font-size: 0.85rem;
    color: var(--charcoal-soft);
    margin: 0;
}

@media (max-width: 68rem) {
    .guideSection--howItWorks__stepsGrid {
        flex-wrap: wrap;
    }
    
    .guideSection--howItWorks__stepCard {
        flex: 0 1 calc(50% - var(--space-large));
    }
    
    .guideSection--howItWorks__extraInfo {
        grid-template-columns: 1fr 1fr;
    }
    
    .guideSection--howItWorks__cta {
        grid-column: 1 / 3;
        text-align: center;
    }
}

@media (max-width: 48rem) {
    .guideSection--howItWorks__stepCard {
        flex: 1 1 100%;
    }
    
    .guideSection--howItWorks__extraInfo {
        grid-template-columns: 1fr;
        gap: var(--space-medium);
    }
    
    .guideSection--howItWorks__cta {
        grid-column: 1 / 2;
    }
    
    .guideSection--howItWorks__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 36rem) {
    .guideSection--howItWorks__header {
        padding-left: var(--space-medium);
    }
    
    .guideSection--howItWorks__title {
        font-size: 1.8rem;
    }
    
    .guideSection--howItWorks__infoBlock {
        flex-direction: column;
        text-align: center;
    }
}

.troubleshootSection--fixIssues__area {
    background-color: var(--ink-deep);
    color: var(--pure-white);
    padding: var(--space-large) 0;
    position: relative;
}

.troubleshootSection--fixIssues__area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--peach-glow), var(--teal-mist), var(--peach-glow));
}

.troubleshootSection--fixIssues__container {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-medium);
}

.troubleshootSection--fixIssues__header {
    display: flex;
    align-items: center;
    gap: var(--space-large);
    margin-bottom: var(--space-large);
    padding-bottom: var(--space-large);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.troubleshootSection--fixIssues__headerIcon {
    font-size: 4rem;
    color: var(--peach-glow);
    background-color: rgba(255,183,120,0.1);
    padding: 1rem;
    border-radius: 2rem;
}

.troubleshootSection--fixIssues__headerText {
    flex: 1;
}

.troubleshootSection--fixIssues__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: var(--pure-white);
}

.troubleshootSection--fixIssues__subtitle {
    font-size: 1.1rem;
    color: var(--peach-glow);
    margin: 0;
}

.troubleshootSection--fixIssues__content {
    display: flex;
    gap: var(--space-large);
}

.troubleshootSection--fixIssues__leftPanel {
    flex: 2;
}

.troubleshootSection--fixIssues__rightPanel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-medium);
}

.troubleshootSection--fixIssues__problemGroup {
    background-color: rgba(255,255,255,0.03);
    padding: var(--space-large);
    border-radius: 2rem;
}

.troubleshootSection--fixIssues__groupTitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    margin: 0 0 var(--space-large) 0;
    color: var(--teal-mist);
    font-family: var(--font-display);
}

.troubleshootSection--fixIssues__groupTitle .material-icons {
    font-size: 2rem;
}

.troubleshootSection--fixIssues__problemItem {
    margin-bottom: var(--space-large);
    padding-bottom: var(--space-large);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.troubleshootSection--fixIssues__problemItem:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.troubleshootSection--fixIssues__problemHeader {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: var(--space-small);
}

.troubleshootSection--fixIssues__problemIcon {
    color: var(--peach-glow);
    font-size: 1.5rem;
}

.troubleshootSection--fixIssues__problemName {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pure-white);
}

.troubleshootSection--fixIssues__problemSolution {
    margin: 0 0 0 2.3rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.troubleshootSection--fixIssues__quickFixCard {
    background: linear-gradient(135deg, rgba(255,183,120,0.1) 0%, rgba(0,206,209,0.1) 100%);
    padding: var(--space-medium);
    border-radius: 1.5rem;
    border-left: 4px solid var(--peach-glow);
}

.troubleshootSection--fixIssues__quickFixIcon {
    font-size: 2rem;
    color: var(--peach-glow);
    margin-bottom: 0.5rem;
}

.troubleshootSection--fixIssues__quickFixCard h4 {
    font-size: 1.2rem;
    margin: 0 0 0.3rem 0;
    color: var(--pure-white);
}

.troubleshootSection--fixIssues__quickFixCard p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.troubleshootSection--fixIssues__supportBox {
    background-color: rgba(255,255,255,0.05);
    padding: var(--space-large);
    border-radius: 2rem;
    display: flex;
    gap: var(--space-medium);
    margin-top: var(--space-small);
}

.troubleshootSection--fixIssues__supportIcon {
    font-size: 3rem;
    color: var(--teal-mist);
}

.troubleshootSection--fixIssues__supportContent h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: var(--pure-white);
}

.troubleshootSection--fixIssues__supportContent p {
    margin: 0 0 0.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.troubleshootSection--fixIssues__supportLink {
    color: var(--peach-glow);
    text-decoration: none;
    border-bottom: 1px dotted var(--peach-glow);
}

.troubleshootSection--fixIssues__supportLink:hover {
    border-bottom: 1px solid var(--peach-glow);
}

.troubleshootSection--fixIssues__supportList {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.troubleshootSection--fixIssues__supportList li {
    margin-bottom: 0.2rem;
}

.troubleshootSection--fixIssues__supportResponse {
    font-style: italic;
    color: var(--teal-mist) !important;
}

.troubleshootSection--fixIssues__ageNote {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: var(--space-small) var(--space-medium);
    background-color: rgba(255,183,120,0.1);
    border-radius: 3rem;
    color: var(--peach-glow);
    font-size: 0.9rem;
    justify-content: center;
    margin-top: var(--space-small);
}

.troubleshootSection--fixIssues__ageNote .material-icons {
    font-size: 1.1rem;
}

@media (max-width: 68rem) {
    .troubleshootSection--fixIssues__content {
        flex-direction: column;
    }
    
    .troubleshootSection--fixIssues__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 48rem) {
    .troubleshootSection--fixIssues__header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-medium);
    }
    
    .troubleshootSection--fixIssues__supportBox {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 36rem) {
    .troubleshootSection--fixIssues__title {
        font-size: 1.8rem;
    }
    
    .troubleshootSection--fixIssues__problemHeader {
        flex-wrap: wrap;
    }
    
    .troubleshootSection--fixIssues__problemSolution {
        margin-left: 0;
    }
}

.pageFooter--unique__container {
    background-color: var(--ink-deep);
    color: var(--pure-white);
    padding: var(--space-large) 0 var(--space-medium) 0;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--teal-mist);
}

.pageFooter--unique__container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,183,120,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pageFooter--unique__main {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 var(--space-medium);
    display: flex;
    gap: var(--space-large);
    position: relative;
    z-index: 2;
}

.pageFooter--unique__brandColumn {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.pageFooter--unique__brandRotate {
    transform: rotate(-3deg);
    background-color: rgba(255,255,255,0.03);
    padding: var(--space-medium);
    border-radius: 2rem 2rem 0.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 4px solid var(--peach-glow);
}

.pageFooter--unique__brandIcon {
    font-size: 2.5rem;
    color: var(--peach-glow);
}

.pageFooter--unique__brandName {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pure-white);
}

.pageFooter--unique__stickerAddress {
    background-color: rgba(255,255,255,0.03);
    padding: var(--space-medium);
    border-radius: 0.5rem 2rem 2rem 2rem;
    display: flex;
    gap: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-right: 4px solid var(--teal-mist);
}

.pageFooter--unique__stickerAddress .material-icons {
    color: var(--teal-mist);
}

.pageFooter--unique__contactColumn {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-large);
}

.pageFooter--unique__contactFlip {
    transform: rotate(2deg) translateY(-5px);
    background-color: rgba(255,255,255,0.03);
    padding: var(--space-medium);
    border-radius: 2rem 0.5rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-small);
    border-bottom: 4px solid var(--peach-glow);
}

.pageFooter--unique__contactLink {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    padding: 0.3rem 0;
}

.pageFooter--unique__contactLink:hover {
    color: var(--peach-glow);
    transform: translateX(5px);
}

.pageFooter--unique__contactLink .material-icons {
    color: var(--teal-mist);
    font-size: 1.2rem;
}

.pageFooter--unique__responsibleText {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding: var(--space-small);
    background-color: rgba(0,206,209,0.1);
    border-radius: 2rem;
}

.pageFooter--unique__responsibleText .material-icons {
    color: var(--teal-mist);
    font-size: 1.1rem;
}

.pageFooter--unique__linksColumn {
    flex: 1.5;
}

.pageFooter--unique__linksTitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--peach-glow);
    margin: 0 0 var(--space-medium) 0;
    font-weight: 400;
}

.pageFooter--unique__linksGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-small);
}

.pageFooter--unique__circleLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-small);
    background-color: rgba(255,255,255,0.03);
    border-radius: 3rem 1rem 3rem 1rem;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 0.3rem;
}

.pageFooter--unique__circleLink:hover {
    background-color: var(--peach-glow);
    color: var(--ink-deep);
    transform: scale(1.05);
}

.pageFooter--unique__circleLink:hover .material-icons {
    color: var(--ink-deep);
}

.pageFooter--unique__circleLink .material-icons {
    font-size: 1.2rem;
    color: var(--teal-mist);
}

.pageFooter--unique__linkText {
    font-size: 0.7rem;
    line-height: 1.2;
}

.pageFooter--unique__partnersColumn {
    flex: 1;
}

.pageFooter--unique__partnersTitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--teal-mist);
    margin: 0 0 var(--space-medium) 0;
    font-weight: 400;
    text-align: right;
}

.pageFooter--unique__partnersSnake {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.3rem;
    margin-bottom: var(--space-medium);
    position: relative;
}

.pageFooter--unique__miniPartner {
    display: block;
    width: 40px;
    height: 20px;
    transition: all 0.2s ease;
    position: relative;
}

.pageFooter--unique__miniPartner--1 {
    transform: translateY(-5px) rotate(-2deg);
}

.pageFooter--unique__miniPartner--2 {
    transform: translateY(3px) rotate(3deg);
}

.pageFooter--unique__miniPartner--3 {
    transform: translateY(-2px) rotate(-5deg);
}

.pageFooter--unique__miniPartner--4 {
    transform: translateY(5px) rotate(2deg);
}

.pageFooter--unique__miniPartner:hover {
    transform: scale(1.2) translateY(-3px);
    z-index: 10;
}

.pageFooter--unique__partnerMiniImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--peach-glow);
    border-radius: 0.2rem;
}

.pageFooter--unique__miniAge {
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, var(--peach-glow), var(--teal-mist));
    border-radius: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ink-deep);
    transform: translateY(-8px) rotate(5deg);
}

.pageFooter--unique__partnersNote {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-align: right;
    margin: 0;
}

.pageFooter--unique__copyrightColumn {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.pageFooter--unique__copyrightRotate {
    transform: rotate(2deg) translateX(10px);
    background-color: rgba(255,255,255,0.03);
    padding: var(--space-medium);
    border-radius: 2rem 0.5rem 0.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 4px solid var(--peach-glow);
    width: 100%;
}

.pageFooter--unique__copyrightText {
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.pageFooter--unique__copyrightIcon {
    font-size: 2rem;
    color: var(--teal-mist);
    opacity: 0.3;
}

.pageFooter--unique__bottomLine {
    max-width: var(--content-max);
    margin: var(--space-large) auto 0;
    padding: var(--space-medium) var(--space-medium) 0;
    display: flex;
    justify-content: center;
    gap: var(--space-large);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pageFooter--unique__bottomItem {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.pageFooter--unique__bottomItem .material-icons {
    font-size: 1rem;
    color: var(--teal-mist);
}

@media (max-width: 68rem) {
    .pageFooter--unique__main {
        flex-wrap: wrap;
    }
    
    .pageFooter--unique__brandColumn,
    .pageFooter--unique__contactColumn,
    .pageFooter--unique__linksColumn,
    .pageFooter--unique__partnersColumn,
    .pageFooter--unique__copyrightColumn {
        flex: 0 1 calc(50% - var(--space-large));
    }
    
    .pageFooter--unique__copyrightColumn {
        flex: 1 1 100%;
    }
    
    .pageFooter--unique__copyrightRotate {
        transform: rotate(0);
        justify-content: center;
    }
}

@media (max-width: 48rem) {
    .pageFooter--unique__main {
        flex-direction: column;
        gap: var(--space-medium);
    }
    
    .pageFooter--unique__brandColumn,
    .pageFooter--unique__contactColumn,
    .pageFooter--unique__linksColumn,
    .pageFooter--unique__partnersColumn,
    .pageFooter--unique__copyrightColumn {
        flex: 1 1 100%;
    }
    
    .pageFooter--unique__brandRotate {
        transform: rotate(0);
    }
    
    .pageFooter--unique__contactFlip {
        transform: rotate(0);
    }
    
    .pageFooter--unique__copyrightRotate {
        transform: rotate(0);
    }
    
    .pageFooter--unique__bottomLine {
        flex-direction: column;
        align-items: center;
        gap: var(--space-small);
    }
    
    .pageFooter--unique__partnersSnake {
        justify-content: center;
    }
    
    .pageFooter--unique__partnersTitle {
        text-align: center;
    }
}

@media (max-width: 36rem) {
    .pageFooter--unique__main {
        padding:2rem 0.4rem!important;
    }
    .pageFooter--unique__linksGrid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pageFooter--unique__circleLink {
        padding: 0.3rem;
    }
    
    .pageFooter--unique__linkText {
        font-size: 0.6rem;
    }
}