@font-face {
    font-family: 'Audiowide';
    src: url('/poly-assets/poly-fonts/audiowide-v18-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'M PLUS Rounded 1c';
    src: url('/poly-assets/poly-fonts/m-plus-rounded-1c-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'M PLUS Rounded 1c';
    src: url('/poly-assets/poly-fonts/m-plus-rounded-1c-v15-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('/poly-assets/poly-fonts/rajdhani-v15-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rajdhani';
    src: url('/poly-assets/poly-fonts/rajdhani-v15-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    src: url('/poly-assets/poly-fonts/fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    src: url('/poly-assets/poly-fonts/fa-regular-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    font-family: 'M PLUS Rounded 1c', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: hsl(0, 0%, 98%);
    background-color: hsl(225, 25%, 8%);
    min-height: 100vh;
    overflow-x: hidden;
}

.poly-header,
.poly-main,
.poly-footer {
    width: 100%;
}

.poly-main {
    min-height: 80vh;
}

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

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

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
}

@media (max-width: 768px) {
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
}

.poly-icon::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    line-height: 1;
}

.poly-icon--regular::before {
    font-weight: 400;
}

.poly-modal-combo {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 9999;
    font-family: 'Rajdhani', system-ui, sans-serif;
}

.poly-modal-tab {
    display: flex;
    align-items: center;
    background: hsl(265, 75%, 50%);
    color: hsl(0, 0%, 98%);
    padding: 0.75rem 1rem 0.75rem 0.5rem;
    border-radius: 0 1rem 1rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateX(calc(-100% + 3.5rem));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.poly-modal-tab:hover {
    transform: translateX(0);
    background: hsl(265, 75%, 55%);
}

.poly-modal-tab__icon {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    min-width: 1.5rem;
    text-align: center;
}

.poly-modal-tab__text {
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.poly-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9998;
    display: none;
    padding: 2rem;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.poly-modal-wrapper:target {
    display: flex;
}

.poly-modal-content {
    background: hsl(225, 25%, 12%);
    max-width: 35rem;
    width: 100%;
    padding: 1.5rem;
    position: relative;
    border: 2px solid hsl(175, 75%, 45%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    margin: auto;
    max-height: 95vh;
    overflow-y: auto;
}

.poly-geo-border {
    border: 2px solid hsl(175, 75%, 45%);
    position: relative;
}

.poly-geo-border::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid hsl(45, 95%, 65%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
    z-index: -1;
}

.poly-modal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid hsla(175, 75%, 45%, 0.3);
}

.poly-modal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.poly-modal-section__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    color: hsl(45, 95%, 65%);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.poly-modal-section__text {
    color: hsl(0, 0%, 85%);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.poly-modal-section__warning {
    display: flex;
    align-items: flex-start;
    background: hsla(45, 95%, 65%, 0.1);
    padding: 1rem;
    border-left: 3px solid hsl(45, 95%, 65%);
    margin: 1.5rem 0;
}

.poly-modal-section__warning-icon {
    color: hsl(45, 95%, 65%);
    font-size: 1.2rem;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
}

.poly-modal-section__warning-text {
    color: hsl(0, 0%, 90%);
    font-size: 0.95rem;
    flex: 1;
}

.poly-modal-section__exit {
    display: inline-block;
    color: hsl(0, 0%, 70%);
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

.poly-modal-section__exit:hover {
    color: hsl(45, 95%, 65%);
}

.poly-modal-section__link {
    display: inline-block;
    color: hsl(175, 75%, 45%);
    text-decoration: none;
    border-bottom: 1px dashed hsl(175, 75%, 45%);
    padding-bottom: 0.1rem;
    margin: 0.5rem 0 1.5rem;
    transition: all 0.2s;
}

.poly-modal-section__link:hover {
    color: hsl(175, 75%, 55%);
    border-bottom-style: solid;
}

.poly-modal-section__action {
    margin-top: 1.5rem;
}

.poly-modal-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsl(265, 75%, 50%);
    color: hsl(0, 0%, 98%);
    padding: 1rem 1.5rem;
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    width: 100%;
    text-align: center;
}

.poly-modal-action-btn:hover {
    background: hsl(265, 75%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.poly-modal-action-btn__icon {
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.poly-modal-action-btn__text {
    font-weight: 400;
}

.poly-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: hsl(0, 0%, 70%);
    font-size: 2rem;
    text-decoration: none;
    line-height: 1;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.poly-modal-close:hover {
    color: hsl(45, 95%, 65%);
}

#poly-modal-accepted:target ~ .poly-modal-wrapper,
#poly-modal-accepted:target .poly-modal-wrapper {
    display: none;
}

.poly-header {
    background: hsl(225, 25%, 10%);
    border-bottom: 1px solid hsla(175, 75%, 45%, 0.2);
    position: relative;
    z-index: 100;
}

.poly-header__warning {
    background: hsla(45, 95%, 65%, 0.08);
    border-bottom: 1px solid hsla(45, 95%, 65%, 0.2);
    padding: 0.5rem 1rem;
    text-align: center;
}

.poly-header__warning-icon {
    color: hsl(45, 95%, 65%);
    margin-right: 0.5rem;
}

.poly-header__warning-text {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 0.9rem;
    color: hsl(0, 0%, 85%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.poly-header__main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 1.5rem 1rem;
    max-width: 88.75rem;
    margin: 0 auto;
    align-items: center;
}

.poly-header__brand {
    display: flex;
    align-items: center;
}

.poly-header__home-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.poly-header__home-link:hover {
    opacity: 0.9;
}

.poly-header__brand-icon {
    color: hsl(45, 95%, 65%);
    font-size: 2rem;
    margin-right: 0.75rem;
}

.poly-header__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 1.8rem;
    color: hsl(0, 0%, 98%);
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.poly-header__nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.poly-header__nav-item {
    position: relative;
}

.poly-header__nav-link {
    display: flex;
    align-items: center;
    color: hsl(0, 0%, 85%);
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s;
    border-radius: 0.25rem;
    text-decoration: none;
}

.poly-header__nav-link:hover {
    color: hsl(45, 95%, 65%);
    background: hsla(45, 95%, 65%, 0.1);
}

.poly-header__nav-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
    min-width: 1rem;
}

.poly-header__nav-item--contact {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid hsla(175, 75%, 45%, 0.3);
}

.poly-header__contact {
    display: flex;
    align-items: center;
    color: hsl(175, 75%, 45%);
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}

.poly-header__contact:hover {
    color: hsl(175, 75%, 55%);
    text-decoration: underline;
}

.poly-header__contact-icon {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.poly-icon--shield::before {
    content: "\f3ed";
}

.poly-icon--exclamation::before {
    content: "\f12a";
}

.poly-icon--check::before {
    content: "\f00c";
}

.poly-icon--alert::before {
    content: "\f071";
}

.poly-icon--stars::before {
    content: "\f14e";
}

.poly-icon--home::before {
    content: "\f015";
}

.poly-icon--game::before {
    content: "\f11b";
}

.poly-icon--question::before {
    content: "\f059";
}

.poly-icon--info::before {
    content: "\f129";
}

.poly-icon--envelope::before {
    content: "\f0e0";
}

@media (max-width: 992px) {
    .poly-header__main {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .poly-header__brand {
        justify-content: center;
    }
    
    .poly-header__nav-list {
        justify-content: center;
    }
    
    .poly-header__nav-item--contact {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .poly-modal-combo {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
    }
    
    .poly-modal-tab {
        transform: none;
        border-radius: 0;
        justify-content: center;
        padding: 0.75rem;
        width: 100%;
    }
    
    .poly-modal-tab:hover {
        transform: none;
    }
    
    .poly-modal-wrapper {
        padding: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .poly-modal-content {
        margin: 0;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.5rem;
        clip-path: none;
        border: none;
        border-top: 2px solid hsl(175, 75%, 45%);
    }
    
    .poly-geo-border::before {
        display: none;
    }
    
    .poly-modal-section__title {
        font-size: 1.3rem;
    }
    
    .poly-header__main {
        padding: 1rem;
    }
    
    .poly-header__nav-list {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .poly-header__nav-link {
        padding: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .poly-header__title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .poly-header__warning-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .poly-modal-section__warning {
        flex-direction: column;
        text-align: center;
    }
    
    .poly-modal-section__warning-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

.poly-welcome {
    position: relative;
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
    margin-bottom: 4rem;
}

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

.poly-welcome__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.poly-welcome__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.poly-welcome__content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 3rem 1rem;
    text-align: center;
}

.poly-welcome__inner {
    max-width: 52rem;
    width: 100%;
}

.poly-welcome__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 3.5rem;
    color: hsl(0, 0%, 98%);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.poly-welcome__text {
    font-size: 1.25rem;
    color: hsl(0, 0%, 90%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.poly-welcome__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsl(265, 75%, 50%);
    color: hsl(0, 0%, 98%);
    padding: 1rem 2rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}

.poly-welcome__cta:hover {
    background: hsl(265, 75%, 55%);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.poly-welcome__cta-text {
    margin-right: 0.75rem;
}

.poly-welcome__cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.poly-welcome__cta:hover .poly-welcome__cta-icon {
    transform: translateY(3px);
}

.poly-icon--arrow::before {
    content: "\f078";
}

@media (max-width: 768px) {
    .poly-welcome {
        max-height: 100%;
        margin-bottom: 3rem;
    }
    
    .poly-welcome__content {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    
    .poly-welcome__title {
        font-size: 2.5rem;
    }
    
    .poly-welcome__text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .poly-welcome__cta {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .poly-welcome__title {
        font-size: 2rem;
    }
    
    .poly-welcome__text {
        font-size: 1rem;
    }
    
    .poly-welcome__cta {
        width: 100%;
        max-width: 20rem;
    }
}

.poly-about {
    width: 100%;
    margin-bottom: 5rem;
}

.poly-about__animation {
    position: relative;
    width: 100%;
    height: 300px;
    background: hsl(225, 25%, 9%);
    overflow: hidden;
    border-bottom: 2px solid hsl(175, 75%, 45%);
}

.poly-about__polygon {
    position: absolute;
    background: transparent;
    border: 2px solid;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.poly-about__polygon--large {
    width: 120px;
    height: 120px;
    border-color: hsl(265, 75%, 50%);
    top: 20%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-name: polyFloatLarge;
}

.poly-about__polygon--medium {
    width: 80px;
    height: 80px;
    border-color: hsl(175, 75%, 45%);
    top: 60%;
    left: 80%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation-name: polyFloatMedium;
    animation-delay: 2s;
}

.poly-about__polygon--small {
    width: 50px;
    height: 50px;
    border-color: hsl(45, 95%, 65%);
    top: 40%;
    left: 70%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-name: polyFloatSmall;
    animation-delay: 5s;
}

.poly-about__polygon--triangle {
    width: 70px;
    height: 70px;
    border-color: hsl(265, 75%, 60%);
    top: 70%;
    left: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-name: polyFloatTriangle;
    animation-delay: 8s;
}

.poly-about__polygon--hexagon {
    width: 90px;
    height: 90px;
    border-color: hsl(175, 75%, 55%);
    top: 10%;
    left: 60%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-name: polyFloatHexagon;
    animation-delay: 12s;
}

.poly-about__polygon--diamond {
    width: 60px;
    height: 60px;
    border-color: hsl(45, 95%, 70%);
    top: 50%;
    left: 40%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-name: polyFloatDiamond;
    animation-delay: 15s;
}

@keyframes polyFloatLarge {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translate(40px, 30px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(80px, -20px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(20px, 50px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes polyFloatMedium {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-60px, 40px) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(30px, -50px) rotate(240deg);
        opacity: 0.6;
    }
}

@keyframes polyFloatSmall {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-40px, 20px) scale(1.2);
        opacity: 1;
    }
}

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

@keyframes polyFloatHexagon {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate(-70px, 20px);
        opacity: 0.9;
    }
}

@keyframes polyFloatDiamond {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translate(-20px, 30px) rotate(240deg);
        opacity: 0.7;
    }
}

.poly-about__content {
    padding: 4rem 1rem;
    background: hsl(225, 25%, 11%);
}

.poly-about__container {
    max-width: 88.75rem;
    margin: 0 auto;
}

.poly-about__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(45, 95%, 65%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.poly-about__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: hsl(175, 75%, 45%);
    border-radius: 2px;
}

.poly-about__text-content {
    max-width: 65rem;
    margin: 0 auto;
}

.poly-about__text {
    font-size: 1.15rem;
    color: hsl(0, 0%, 90%);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.poly-about__text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .poly-about__animation {
        height: 250px;
    }
    
    .poly-about__polygon--large {
        width: 80px;
        height: 80px;
    }
    
    .poly-about__polygon--medium {
        width: 60px;
        height: 60px;
        left: 75%;
    }
    
    .poly-about__polygon--hexagon {
        width: 70px;
        height: 70px;
    }
    
    .poly-about__content {
        padding: 3rem 1rem;
    }
    
    .poly-about__title {
        font-size: 2.2rem;
    }
    
    .poly-about__text {
        font-size: 1.05rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .poly-about__animation {
        height: 200px;
    }
    
    .poly-about__polygon--large {
        width: 60px;
        height: 60px;
        left: 5%;
    }
    
    .poly-about__polygon--medium {
        width: 50px;
        height: 50px;
        left: 70%;
    }
    
    .poly-about__polygon--small {
        width: 40px;
        height: 40px;
        left: 80%;
    }
    
    .poly-about__title {
        font-size: 1.8rem;
    }
    
    .poly-about__text {
        font-size: 1rem;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .poly-about__polygon {
            animation: none !important;
            opacity: 0.5;
        }
    }
}

.poly-games {
    padding: 5rem 1rem;
    background: hsl(225, 25%, 9%);
    position: relative;
    overflow: hidden;
}

.poly-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, hsl(265, 75%, 50%), hsl(175, 75%, 45%), hsl(45, 95%, 65%));
}

.poly-games__container {
    max-width: 88.75rem;
    margin: 0 auto;
}

.poly-games__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(0, 0%, 98%);
    text-align: center;
    margin-bottom: 1rem;
}

.poly-games__subtitle {
    font-size: 1.15rem;
    color: hsl(0, 0%, 80%);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.poly-games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.poly-game-card {
    background: hsl(225, 25%, 11%);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid hsla(175, 75%, 45%, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.poly-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    border-color: hsla(175, 75%, 45%, 0.4);
}

.poly-game-card__image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.poly-game-card__image-container picture {
    height: 100%;
}

.poly-game-card__image {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 0.5s ease;
}

.poly-game-card:hover .poly-game-card__image {
    transform: scale(1.05);
}

.poly-game-card__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.poly-game-card__name {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(0, 0%, 95%);
    text-align: center;
    margin: 1.5rem 1rem 1rem;
    line-height: 1.3;
}

.poly-game-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(265, 75%, 50%);
    color: hsl(0, 0%, 98%);
    padding: 0.875rem 1.5rem;
    margin: 1rem 1.5rem 1.5rem;
    text-decoration: none;
    border-radius: 0.25rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
    margin-top: auto;
}

.poly-game-card__link:hover {
    background: hsl(265, 75%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.poly-game-card__link-text {
    margin-right: 0.5rem;
}

.poly-game-card__link-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.poly-game-card__link:hover .poly-game-card__link-icon {
    transform: translateX(3px);
}

.poly-icon--arrow-right::before {
    content: "\f061";
}

@media (max-width: 1100px) {
    .poly-games__grid {
        grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .poly-games {
        padding: 4rem 1rem;
    }
    
    .poly-games__title {
        font-size: 2.2rem;
    }
    
    .poly-games__subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .poly-games__grid {
        grid-template-columns: 1fr;
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
        gap: 2rem;
    }
    
    .poly-game-card__image-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .poly-games {
        padding: 3rem 1rem;
    }
    
    .poly-games__title {
        font-size: 1.8rem;
    }
    
    .poly-games__subtitle {
        font-size: 1rem;
    }
    
    .poly-game-card__name {
        font-size: 1.3rem;
        margin: 1.25rem 1rem 0.75rem;
    }
    
    .poly-game-card__link {
        padding: 0.75rem 1.25rem;
        margin: 0.75rem 1rem 1.25rem;
    }
}

.poly-reviews {
    padding: 5rem 1rem;
    background: hsl(225, 25%, 11%);
}

.poly-reviews__container {
    max-width: 88.75rem;
    margin: 0 auto;
}

.poly-reviews__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(0, 0%, 98%);
    text-align: center;
    margin-bottom: 0.75rem;
}

.poly-reviews__subtitle {
    font-size: 1.15rem;
    color: hsl(0, 0%, 80%);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.poly-reviews__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.poly-review-card {
    background: hsl(225, 25%, 13%);
    border-radius: 0.5rem;
    padding: 1.75rem;
    flex: 1 1 300px;
    max-width: 350px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.poly-review-card--pattern-1 {
    border-color: hsla(265, 75%, 50%, 0.3);
    border-top: 4px solid hsl(265, 75%, 50%);
}

.poly-review-card--pattern-2 {
    border-color: hsla(175, 75%, 45%, 0.3);
    border-top: 4px solid hsl(175, 75%, 45%);
}

.poly-review-card--pattern-3 {
    border-color: hsla(45, 95%, 65%, 0.3);
    border-top: 4px solid hsl(45, 95%, 65%);
}

.poly-review-card--pattern-4 {
    border-color: hsla(265, 75%, 60%, 0.3);
    border-top: 4px solid hsl(265, 75%, 60%);
}

.poly-review-card--pattern-5 {
    border-color: hsla(175, 75%, 55%, 0.3);
    border-top: 4px solid hsl(175, 75%, 55%);
}

.poly-review-card--pattern-6 {
    border-color: hsla(45, 95%, 70%, 0.3);
    border-top: 4px solid hsl(45, 95%, 70%);
}

.poly-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.poly-review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.poly-review-card__name {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(0, 0%, 95%);
    margin: 0;
}

.poly-review-card__rating {
    display: flex;
    gap: 0.25rem;
}

.poly-review-card__star {
    color: hsl(45, 95%, 65%);
    font-size: 1rem;
}

.poly-review-card__star--half {
    position: relative;
}

.poly-review-card__star--half::before {
    content: "\f089";
}

.poly-review-card__star--empty {
    color: hsl(0, 0%, 40%);
}

.poly-review-card__text {
    font-size: 1rem;
    color: hsl(0, 0%, 85%);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 1.25rem;
}

.poly-review-card__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 2rem;
    color: hsla(175, 75%, 45%, 0.5);
    font-family: serif;
}

.poly-icon--star::before {
    content: "\f005";
}

@media (max-width: 1100px) {
    .poly-review-card {
        flex: 1 1 280px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .poly-reviews {
        padding: 4rem 1rem;
    }
    
    .poly-reviews__title {
        font-size: 2.2rem;
    }
    
    .poly-reviews__subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .poly-reviews__grid {
        gap: 1.5rem;
    }
    
    .poly-review-card {
        flex: 1 1 100%;
        max-width: 28rem;
    }
}

@media (max-width: 480px) {
    .poly-reviews {
        padding: 3rem 1rem;
    }
    
    .poly-reviews__title {
        font-size: 1.8rem;
    }
    
    .poly-reviews__subtitle {
        font-size: 1rem;
    }
    
    .poly-review-card {
        padding: 1.5rem;
    }
    
    .poly-review-card__name {
        font-size: 1.2rem;
    }
    
    .poly-review-card__text {
        font-size: 0.95rem;
    }
}

.poly-faq {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.poly-faq__animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: hsl(225, 25%, 8%);
}

.poly-faq__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, hsla(265, 75%, 50%, 0.15) 2px, transparent 3px),
        radial-gradient(circle at 60% 10%, hsla(175, 75%, 45%, 0.15) 3px, transparent 4px),
        radial-gradient(circle at 80% 70%, hsla(45, 95%, 65%, 0.15) 2px, transparent 3px),
        radial-gradient(circle at 40% 90%, hsla(265, 75%, 60%, 0.15) 3px, transparent 4px),
        radial-gradient(circle at 90% 40%, hsla(175, 75%, 55%, 0.15) 2px, transparent 3px);
    background-size: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 190px 190px;
    animation: particleFloat 40s infinite linear;
}

@keyframes particleFloat {
    0% {
        background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
    }
    100% {
        background-position: 200px 200px, 250px 250px, 180px 180px, 220px 220px, 190px 190px;
    }
}

.poly-faq__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.poly-faq__content {
    position: relative;
    z-index: 3;
    padding: 5rem 1rem;
}

.poly-faq__container {
    max-width: 88.75rem;
    margin: 0 auto;
}

.poly-faq__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 3rem;
    color: hsl(0, 0%, 98%);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.poly-faq__subtitle {
    font-size: 1.25rem;
    color: hsl(0, 0%, 85%);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.poly-faq__blocks {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.poly-faq__block {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(30, 35, 45, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid hsla(175, 75%, 45%, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poly-faq__block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: hsla(175, 75%, 45%, 0.4);
}

.poly-faq__block-title {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(45, 95%, 65%);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid hsla(175, 75%, 45%, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.poly-faq__block-icon {
    font-size: 1.3rem;
}

.poly-faq__items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.poly-faq__item {
    border-left: 3px solid hsla(265, 75%, 50%, 0.5);
    padding-left: 1rem;
}

.poly-faq__question {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(0, 0%, 95%);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.poly-faq__answer {
    font-size: 0.95rem;
    color: hsl(0, 0%, 80%);
    line-height: 1.6;
    margin: 0;
}

.poly-icon--cost::before {
    content: "\f155";
}

.poly-icon--tech::before {
    content: "\f085";
}

.poly-icon--safety::before {
    content: "\f21e";
}

@media (max-width: 1100px) {
    .poly-faq__blocks {
        justify-content: center;
        gap: 2rem;
    }
    
    .poly-faq__block {
        flex: 1 1 320px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .poly-faq__content {
        padding: 4rem 1rem;
    }
    
    .poly-faq__title {
        font-size: 2.5rem;
    }
    
    .poly-faq__subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .poly-faq__blocks {
        gap: 1.75rem;
    }
    
    .poly-faq__block {
        padding: 1.75rem;
    }
    
    .poly-faq__block-title {
        font-size: 1.3rem;
    }
    
    .poly-faq__items {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .poly-faq__content {
        padding: 3rem 1rem;
    }
    
    .poly-faq__title {
        font-size: 2rem;
    }
    
    .poly-faq__subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .poly-faq__block {
        padding: 0.5rem;
        min-width: 100%;
    }
    
    .poly-faq__block-title {
        font-size: 1.2rem;
    }
    
    .poly-faq__question {
        font-size: 1rem;
    }
    
    .poly-faq__answer {
        font-size: 0.9rem;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .poly-faq__particles {
            animation: none;
        }
    }
}

.poly-responsibility {
    padding: 5rem 1rem;
    background: hsl(225, 25%, 9%);
    border-top: 1px solid hsla(175, 75%, 45%, 0.2);
    border-bottom: 1px solid hsla(175, 75%, 45%, 0.2);
}

.poly-responsibility__container {
    max-width: 65rem;
    margin: 0 auto;
    text-align: center;
}

.poly-responsibility__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(0, 0%, 98%);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.poly-responsibility__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, hsl(265, 75%, 50%), hsl(45, 95%, 65%));
    border-radius: 2px;
}

.poly-responsibility__age-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 4rem;
    font-family: 'Audiowide', system-ui, sans-serif;
    font-weight: 700;
    position: relative;
    padding: 1.5rem 3rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.poly-responsibility__age-digit {
    font-size: 8rem;
    color: hsl(0, 100%, 50%);
    text-shadow: 
        0 0 20px hsl(0, 100%, 50%),
        0 0 40px hsl(0, 100%, 60%),
        0 0 60px hsl(0, 100%, 70%);
    animation: digitPulse 1.5s ease-in-out infinite alternate;
    margin: 0 0.5rem;
    line-height: 1;
}

.poly-responsibility__age-digit:nth-child(1) {
    animation-delay: 0s;
}

.poly-responsibility__age-digit:nth-child(2) {
    animation-delay: 0.2s;
}

.poly-responsibility__age-plus {
    font-size: 8rem;
    color: hsl(45, 100%, 50%);
    text-shadow: 
        0 0 20px hsl(45, 100%, 50%),
        0 0 40px hsl(45, 100%, 60%),
        0 0 60px hsl(45, 100%, 70%);
    animation: plusPulse 2s ease-in-out infinite alternate;
    margin-left: 0.5rem;
    line-height: 1;
}

@keyframes digitPulse {
    0% {
        text-shadow: 
            0 0 20px hsl(0, 100%, 50%),
            0 0 40px hsl(0, 100%, 60%),
            0 0 60px hsl(0, 100%, 70%);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 30px hsl(0, 100%, 60%),
            0 0 60px hsl(0, 100%, 70%),
            0 0 90px hsl(0, 100%, 80%);
        transform: scale(1.05);
    }
}

@keyframes plusPulse {
    0% {
        text-shadow: 
            0 0 20px hsl(45, 100%, 50%),
            0 0 40px hsl(45, 100%, 60%),
            0 0 60px hsl(45, 100%, 70%);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 40px hsl(45, 100%, 60%),
            0 0 80px hsl(45, 100%, 70%),
            0 0 120px hsl(45, 100%, 80%);
        transform: scale(1.1);
    }
}

.poly-responsibility__content {
    text-align: left;
    background: hsl(225, 25%, 11%);
    padding: 3rem;
    border-radius: 0.75rem;
    border: 1px solid hsla(265, 75%, 50%, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.poly-responsibility__text {
    font-size: 1.1rem;
    color: hsl(0, 0%, 90%);
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.poly-responsibility__text:last-child {
    margin-bottom: 0;
}

.poly-responsibility__text::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(175, 75%, 45%);
    font-size: 1.2rem;
}

.poly-responsibility__link {
    color: hsl(45, 95%, 65%);
    text-decoration: none;
    border-bottom: 1px dashed hsl(45, 95%, 65%);
    padding-bottom: 0.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.poly-responsibility__link:hover {
    color: hsl(45, 95%, 75%);
    border-bottom-style: solid;
    border-bottom-color: hsl(45, 95%, 75%);
}

@media (max-width: 768px) {
    .poly-responsibility {
        padding: 4rem 1rem;
    }
    
    .poly-responsibility__title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .poly-responsibility__age-warning {
        margin: 1.5rem auto 3rem;
        padding: 1rem 2rem;
    }
    
    .poly-responsibility__age-digit,
    .poly-responsibility__age-plus {
        font-size: 6rem;
    }
    
    .poly-responsibility__content {
        padding: 2rem;
    }
    
    .poly-responsibility__text {
        font-size: 1.05rem;
        margin-bottom: 1.75rem;
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .poly-responsibility {
        padding: 3rem 1rem;
    }
    
    .poly-responsibility__title {
        font-size: 1.8rem;
    }
    
    .poly-responsibility__age-digit,
    .poly-responsibility__age-plus {
        font-size: 4.5rem;
    }
    
    .poly-responsibility__content {
        padding: 1.5rem;
    }
    
    .poly-responsibility__text {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .poly-responsibility__text::before {
        font-size: 1rem;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .poly-responsibility__age-digit,
        .poly-responsibility__age-plus {
            animation: none;
            text-shadow: 
                0 0 10px currentColor;
        }
    }
}

.poly-contact {
    padding: 5rem 1rem;
    background: hsl(225, 25%, 11%);
    position: relative;
}

.poly-contact__container {
    max-width: 72rem;
    margin: 0 auto;
}

.poly-contact__title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2.8rem;
    color: hsl(0, 0%, 98%);
    text-align: center;
    margin-bottom: 1rem;
}

.poly-contact__subtitle {
    font-size: 1.15rem;
    color: hsl(0, 0%, 80%);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.poly-contact__form {
    background: hsl(225, 25%, 13%);
    border-radius: 0.75rem;
    padding: 3rem;
    border: 1px solid hsla(175, 75%, 45%, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.poly-contact__form-top {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.poly-contact__left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.poly-contact__right-column {
    flex: 1.5;
}

.poly-contact__field {
    display: flex;
    flex-direction: column;
}

.poly-contact__field--wide {
    height: 100%;
}

.poly-contact__label {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: hsl(0, 0%, 90%);
    margin-bottom: 0.75rem;
}

.poly-contact__input {
    background: hsl(225, 25%, 15%);
    border: 2px solid hsla(175, 75%, 45%, 0.3);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: hsl(0, 0%, 95%);
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
}

.poly-contact__input:focus {
    outline: none;
    border-color: hsl(175, 75%, 45%);
    box-shadow: 0 0 0 3px hsla(175, 75%, 45%, 0.2);
}

.poly-contact__textarea {
    background: hsl(225, 25%, 15%);
    border: 2px solid hsla(175, 75%, 45%, 0.3);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: hsl(0, 0%, 95%);
    transition: all 0.3s ease;
    font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
    resize: vertical;
    min-height: 180px;
    height: 100%;
    width: 100%;
}

.poly-contact__textarea:focus {
    outline: none;
    border-color: hsl(175, 75%, 45%);
    box-shadow: 0 0 0 3px hsla(175, 75%, 45%, 0.2);
}

.poly-contact__form-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid hsla(175, 75%, 45%, 0.2);
}

.poly-contact__submit {
    background: linear-gradient(135deg, hsl(265, 75%, 50%), hsl(265, 75%, 60%));
    color: hsl(0, 0%, 98%);
    border: none;
    padding: 1.25rem 3rem;
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.poly-contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, hsl(265, 75%, 55%), hsl(265, 75%, 65%));
}

.poly-contact__submit:active {
    transform: translateY(-1px);
}

.poly-contact__submit-text {
    display: inline-block;
    position: relative;
    padding-right: 1.5rem;
}

.poly-contact__success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem;
    overflow-y: auto;
}

.poly-contact__success:target {
    display: flex;
}

.poly-contact__success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.poly-contact__success-modal {
    position: relative;
    z-index: 2;
    background: hsl(225, 25%, 13%);
    border-radius: 0.75rem;
    padding: 3rem;
    max-width: 32rem;
    width: 100%;
    margin: auto;
    border: 2px solid hsl(175, 75%, 45%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.poly-contact__success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(175, 75%, 45%), hsl(175, 75%, 55%));
    color: hsl(0, 0%, 98%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px hsla(175, 75%, 45%, 0.4);
}

.poly-contact__success-title {
    font-family: 'Audiowide', system-ui, sans-serif;
    font-size: 2rem;
    color: hsl(0, 0%, 98%);
    margin-bottom: 1rem;
}

.poly-contact__success-text {
    font-size: 1.1rem;
    color: hsl(0, 0%, 85%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.poly-contact__success-close {
    display: inline-block;
    background: hsl(265, 75%, 50%);
    color: hsl(0, 0%, 98%);
    padding: 1rem 2rem;
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.poly-contact__success-close:hover {
    background: hsl(265, 75%, 55%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .poly-contact {
        padding: 4rem 1rem;
    }
    
    .poly-contact__title {
        font-size: 2.2rem;
    }
    
    .poly-contact__subtitle {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
    }
    
    .poly-contact__form {
        padding: 2rem;
    }
    
    .poly-contact__form-top {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .poly-contact__success {
        padding: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .poly-contact__success-modal {
        padding: 2rem;
        margin: 1rem auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .poly-contact__success-title {
        font-size: 1.6rem;
    }
    
    .poly-contact__success-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .poly-contact {
        padding: 3rem 1rem;
    }
    
    .poly-contact__title {
        font-size: 1.8rem;
    }
    
    .poly-contact__subtitle {
        font-size: 1rem;
    }
    
    .poly-contact__form {
        padding: 1.5rem;
    }
    
    .poly-contact__input,
    .poly-contact__textarea {
        padding: 0.875rem 1rem;
    }
    
    .poly-contact__submit {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 20rem;
    }
    
    .poly-contact__success-modal {
        padding: 1.5rem;
    }
    
    .poly-contact__success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

.poly-footer {
    background: hsl(225, 25%, 7%);
    border-top: 2px solid hsl(225, 25%, 12%);
    padding-top: 3.5rem;
}

.poly-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3.5rem;
    padding: 0 1.5rem 3rem;
    margin-bottom: 2rem;
    max-width: 88.75rem;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid hsla(175, 75%, 45%, 0.15);
}

.poly-footer__navigation {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.poly-footer__heading {
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-size: 1.5rem;
    color: hsl(45, 95%, 65%);
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid hsla(45, 95%, 65%, 0.25);
}

.poly-footer__pages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.poly-footer__page-link {
    background: hsl(225, 25%, 12%);
    color: hsl(0, 0%, 90%);
    font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.375rem;
    border: 1px solid hsla(175, 75%, 45%, 0.2);
    transition: all 0.25s ease;
    flex: 1;
    min-width: 140px;
    text-align: center;
}

.poly-footer__page-link:hover {
    background: hsl(225, 25%, 15%);
    color: hsl(175, 75%, 55%);
    border-color: hsl(175, 75%, 45%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.poly-footer__resources {
    flex: 1;
    min-width: 280px;
    max-width: 50%;
}

.poly-footer__resource-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.poly-footer__resource-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 180px;
}

.poly-footer__resource-link {
    display: block;
    width: 180px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid hsla(0, 0%, 100%, 0.08);
    transition: all 0.3s ease;
    background: hsl(150, 94%, 43%);
    padding: 0.75rem;
}

.poly-footer__resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: hsla(175, 75%, 45%, 0.4);
    background: hsl(225, 25%, 12%);
}

.poly-footer__resource-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.poly-footer__age-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Audiowide', system-ui, sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, hsla(225, 25%, 10%, 0.9), hsla(225, 25%, 8%, 0.9));
    padding: 1.75rem 2.25rem;
    border-radius: 1rem;
    border: 2px solid hsla(265, 75%, 50%, 0.3);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.4);
}

.poly-footer__age-number {
    font-size: 3.75rem;
    color: hsl(175, 100%, 55%);
    text-shadow: 
        0 0 12px hsl(175, 100%, 55%),
        0 0 24px hsl(175, 100%, 65%),
        0 0 36px hsl(175, 100%, 75%);
    animation: footerAgePulse 2.2s ease-in-out infinite alternate;
    margin: 0 0.15rem;
    line-height: 1;
}

.poly-footer__age-number:nth-child(1) {
    animation-delay: 0s;
}

.poly-footer__age-number:nth-child(2) {
    animation-delay: 0.4s;
}

.poly-footer__age-symbol {
    font-size: 3.75rem;
    color: hsl(265, 100%, 75%);
    text-shadow: 
        0 0 12px hsl(265, 100%, 75%),
        0 0 24px hsl(265, 100%, 85%),
        0 0 36px hsl(265, 100%, 90%);
    animation: footerSymbolPulse 2.5s ease-in-out infinite alternate;
    margin-left: 0.15rem;
    line-height: 1;
}

@keyframes footerAgePulse {
    0% {
        text-shadow: 
            0 0 12px hsl(175, 100%, 55%),
            0 0 24px hsl(175, 100%, 65%),
            0 0 36px hsl(175, 100%, 75%);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 20px hsl(175, 100%, 65%),
            0 0 40px hsl(175, 100%, 75%),
            0 0 60px hsl(175, 100%, 85%);
        transform: scale(1.06);
    }
}

@keyframes footerSymbolPulse {
    0% {
        text-shadow: 
            0 0 12px hsl(265, 100%, 75%),
            0 0 24px hsl(265, 100%, 85%),
            0 0 36px hsl(265, 100%, 90%);
        transform: scale(1);
    }
    100% {
        text-shadow: 
            0 0 22px hsl(265, 100%, 85%),
            0 0 44px hsl(265, 100%, 90%),
            0 0 66px hsl(265, 100%, 95%);
        transform: scale(1.08);
    }
}

.poly-footer__base {
    padding: 2rem 1.5rem;
    text-align: center;
    background: hsl(225, 25%, 6%);
    border-top: 1px solid hsla(225, 25%, 12%, 0.5);
}

.poly-footer__legal {
    font-family: 'M PLUS Rounded 1c', system-ui, sans-serif;
    font-size: 0.9rem;
    color: hsl(0, 0%, 65%);
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .poly-footer__top {
        gap: 3rem;
        padding: 0 1.25rem 2.5rem;
    }
    
    .poly-footer__navigation,
    .poly-footer__resources {
        max-width: 100%;
    }
    
    .poly-footer__resource-grid {
        justify-content: center;
        gap: 2.5rem;
    }
    
    .poly-footer__age-reminder {
        padding: 1.5rem 2rem;
    }
    
    .poly-footer__age-number,
    .poly-footer__age-symbol {
        font-size: 3.25rem;
    }
}

@media (max-width: 768px) {
    .poly-footer__top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
    
    .poly-footer__pages {
        justify-content: center;
    }
    
    .poly-footer__page-link {
        min-width: 160px;
    }
    
    .poly-footer__resource-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .poly-footer__resource-column {
        width: 100%;
        max-width: 22rem;
    }
    
    .poly-footer__age-reminder {
        width: 100%;
        max-width: 18rem;
    }
}

@media (max-width: 480px) {
    .poly-footer {
        padding-top: 2.5rem;
    }
    
    .poly-footer__top {
        padding: 0 0.1rem 0.2rem;
        gap: 2.5rem;
    }
    
    .poly-footer__heading {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .poly-footer__pages {
        flex-direction: column;
        align-items: center;
    }
    
    .poly-footer__page-link {
        width: 100%;
        max-width: 20rem;
    }
    
    .poly-footer__resource-link {
        width: 160px;
        height: 55px;
        padding: 0.5rem;
    }
    
    .poly-footer__age-number,
    .poly-footer__age-symbol {
        font-size: 2.75rem;
    }
    
    .poly-footer__base {
        padding: 1.5rem 1rem;
    }
    
    .poly-footer__legal {
        font-size: 0.85rem;
    }
    
    @media (prefers-reduced-motion: reduce) {
        .poly-footer__age-number,
        .poly-footer__age-symbol {
            animation: none;
            text-shadow: 
                0 0 8px currentColor;
        }
    }
}