@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@700&family=Inter:wght@600&family=Nunito+Sans:wght@400;500;600;700;900&display=swap');

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

body {
    font-family: 'Nunito Sans', sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;
}

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

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

.header {
    border-bottom: 1px solid #dadad8;
    width: 100%;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 13px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header-logo span {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 51px;
}

.header-nav a {
    font-size: 18px;
    line-height: 1.2;
}

.hamburger {
    display: none;
    width: 32px;
    height: 13px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #004ddc;
}

.hamburger span:nth-child(2) {
    background: #0080ff;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 20px 80px;
    background: #fff;
    border-bottom: 1px solid #dadad8;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 672px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-character {
    position: absolute;
    width: 540px;
    height: 526px;
    right: 40px;
    top: 146px;
    object-fit: contain;
    pointer-events: none;
}

.hero-title {
    font-weight: 900;
    font-size: 130px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 1040px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 18px;
    line-height: normal;
    width: 509px;
    max-width: 100%;
}

.btn-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 24px 60px;
    background: linear-gradient(to right, #003499, #0991d6);
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 218px;
}

.style-nest-section {
    background: #003499;
    position: relative;
    overflow: hidden;
}

.style-nest-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
    min-height: 612px;
    position: relative;
}

.style-nest-decoration {
    position: absolute;
    left: -252px;
    top: -59px;
    width: 822px;
    height: 907px;
    pointer-events: none;
}

.style-nest-decoration img {
    width: 100%;
    height: 100%;
}

.style-nest-content {
    position: relative;
    z-index: 1;
    width: 1040px;
    max-width: 100%;
}

.style-nest-text {
    font-size: 18px;
    line-height: 1.3;
    color: #f7f7f7;
    text-align: justify;
    letter-spacing: -0.36px;
}

.style-nest-text .spacer {
    height: 1.3em;
}

.style-nest-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    text-transform: capitalize;
    text-decoration: underline;
    letter-spacing: -0.32px;
}

.style-nest-heading {
    position: absolute;
    left: 10%;
    transform: translateX(-50%);
    bottom: 80px;
    display: flex;
    align-items: center;
    gap: 17px;
    z-index: 1;
    white-space: nowrap;
    
}

.style-nest-heading-text {
    font-weight: 700;
    font-size: 160px;
    line-height: normal;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -12.8px;
}

.style-nest-cards {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    position: relative;
    flex-shrink: 0;
}

.style-nest-card {
    grid-column: 1;
    grid-row: 1;
    width: 134px;
    height: 162px;
    overflow: hidden;
    position: relative;
}

.style-nest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-nest-card:nth-child(1) {
    z-index: 3;
}

.style-nest-card:nth-child(2) {
    margin-left: 10px;
    margin-top: 10px;
    z-index: 2;
}

.style-nest-card:nth-child(2)::after,
.style-nest-card:nth-child(3)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.style-nest-card:nth-child(3) {
    margin-left: 22px;
    margin-top: 22px;
    z-index: 1;
}

.why-here-section {
    background: #fff;
    overflow: hidden;
}

.why-here-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.why-here-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.why-here-text {
    font-size: 18px;
    line-height: normal;
    text-align: center;
    width: 100%;
}

.why-here-text .spacer {
    height: 1em;
}

.why-here-games {
    display: flex;
    gap: 20px;
    width: 100%;
}

.why-here-games .game-thumb {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
}

.why-here-games .game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-note-section {
    background: #dfdfd4;
    overflow: hidden;
}

.glow-note-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    height: 769px;
}

.glow-note-title {
    position: absolute;
    left: 10%;
    top: 40%;
    transform: translate(-50%, -50%);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 200px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.2);
    letter-spacing: -0.08em;
    white-space: nowrap;
    text-align: center;
}

.glow-note-top {
    position: absolute;
    left: 80px;
    top: 39px;
    width: 895px;
    height: 379px;
}

.glow-note-bottom {
    position: absolute;
    right: 80px;
    top: 496px;
    width: 785px;
    height: 233px;
}

.blue-block {
    position: absolute;
    background: #004ddc;
}

.glow-note-top .b1 { left: 0; top: 46px; width: 572px; height: 92px; }
.glow-note-top .b2 { left: 0; top: 131px; width: 695px; height: 72px; }
.glow-note-top .b3 { left: 0; top: 203px; width: 359px; height: 72px; }
.glow-note-top .b4 { left: 0; top: 296px; width: 180px; height: 47px; }
.glow-note-top .b5 { left: 560px; top: 0; width: 288px; height: 46px; }
.glow-note-top .b6 { left: 560px; top: 46px; width: 107px; height: 34px; }
.glow-note-top .b7 { left: 0; top: 342px; width: 231px; height: 37px; }

.glow-note-bottom .b1 { left: 308px; top: 0; width: 477px; height: 116px; }
.glow-note-bottom .b2 { left: 506px; top: 116px; width: 145px; height: 117px; }
.glow-note-bottom .b3 { left: 13px; top: 70px; width: 295px; height: 46px; }
.glow-note-bottom .b4 { left: 184px; top: 116px; width: 155px; height: 34px; }

.glow-text {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
}

.glow-text-main {
    left: 2.5px;
    top: 57px;
    font-size: 80px;
    line-height: normal;
    letter-spacing: -4px;
    text-transform: lowercase;
    white-space: nowrap;
}

.glow-text-sub1 {
    left: 570px;
    top: 11px;
    font-size: 33px;
    line-height: 35px;
    letter-spacing: -1.32px;
    text-transform: capitalize;
    text-align: right;
    width: 325px;
}

.glow-text-sub2 {
    left: 6px;
    top: 310px;
    font-size: 33px;
    line-height: 35px;
    letter-spacing: -1.32px;
    text-transform: capitalize;
    width: 225px;
}

.glow-text-sub3 {
    left: 3px;
    top: 138px;
    font-size: 80px;
    line-height: 0.8;
    letter-spacing: -4px;
    text-transform: capitalize;
    width: 858px;
}

.glow-bottom-text1 {
    right: 3px;
    top: 10px;
    font-size: 60px;
    line-height: 74.54%;
    letter-spacing: -3px;
    text-transform: lowercase;
    text-align: right;
    width: 571px;
}

.glow-bottom-text2 {
    right: 460px;
    top: 84px;
    font-size: 33px;
    line-height: 35px;
    letter-spacing: -1.32px;
    text-transform: capitalize;
    text-align: right;
    width: 325px;
}

.glow-bottom-text3 {
    left: 513px;
    top: 125px;
    font-size: 33px;
    line-height: 35px;
    letter-spacing: -1.32px;
    text-transform: capitalize;
    width: 136px;
}

.game-spots-section {
    background: #fff;
    overflow: hidden;
}

.game-spots-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.game-spots-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.game-spots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

.game-spot-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.game-spot-card.dark {
    background: #003499;
}

.game-spot-card.light {
    background: #004ddc;
}

.game-spot-card h3 {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
}

.game-spot-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
}

.game-spot-card.card-glam { order: 1; }
.game-spot-card.card-salon { order: 2; }
.game-spot-card.card-room { order: 3; }
.game-spot-card.card-sweet { order: 4; }

.catalog-gallery {
    background: #fff;
    overflow: hidden;
}

.catalog-gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.catalog-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.catalog-text {
    font-size: 18px;
    line-height: normal;
    text-align: center;
    width: 100%;
}

.catalog-text .spacer {
    height: 1em;
}

.catalog-games {
    display: flex;
    gap: 20px;
    width: 100%;
}

.catalog-games .catalog-game-link {
    flex: 1;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
}

.catalog-games .catalog-game-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.catalog-games .catalog-game-link:hover img {
    transform: scale(1.05);
}

.catalog-stats {
    background: #fff;
    overflow: hidden;
}

.catalog-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.stat-card {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.stat-card.light {
    background: #004ddc;
}

.stat-card.dark {
    background: #003499;
}

.stat-card h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
}

.stat-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
}

.game-hero {
    background: #fff;
    overflow: hidden;
}

.game-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.game-hero-img {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
}

.game-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.game-hero-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-transform: uppercase;
}

.game-hero-text {
    font-size: 18px;
    line-height: normal;
}

.game-hero-text .spacer {
    height: 1em;
}

.game-detail {
    background: #004ddc;
    overflow: hidden;
}

.game-detail-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.game-detail-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
}

.game-detail-img {
    width: 600px;
    height: 300px;
    overflow: hidden;
}

.game-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-detail-text {
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #fff;
    width: 100%;
}

.game-detail-text .spacer {
    height: 1em;
}

.policy-section {
    background: #fff;
    overflow: hidden;
}

.policy-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.policy-title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.policy-card {
    background: #004ddc;
    padding: 20px;
    width: 100%;
    color: #fff;
    font-size: 18px;
    line-height: normal;
}

.policy-card p {
    margin-bottom: 10px;
}

.policy-card p:last-child {
    margin-bottom: 0;
}

.contact-section {
    background: #004ddc;
    position: relative;
    overflow: hidden;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px;
    position: relative;
    min-height: 701px;
}

.contact-decoration {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 14px), calc(-50% - 45px));
    width: 715px;
    height: 932px;
    pointer-events: none;
}

.contact-decoration img {
    width: 100%;
    height: 100%;
    transform: rotate(129.16deg);
}

.contact-address {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: -1.28px;
}

.contact-images {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 293px;
    margin: 40px auto 0;
}

.contact-img {
    position: absolute;
    overflow: hidden;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-img:nth-child(1) {
    left: 33px;
    top: 0;
    width: 247px;
    height: 260px;
}

.contact-img:nth-child(2) {
    left: 16px;
    top: 17px;
    width: 248px;
    height: 259px;
}

.contact-img:nth-child(3) {
    left: 0;
    top: 33px;
    width: 247px;
    height: 260px;
}

.contact-email {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: -40px;
}

.contact-email-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: normal;
    color: #fff;
    letter-spacing: -4px;
    text-transform: lowercase;
}

.contact-email-masked {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 80px;
    line-height: normal;
    letter-spacing: -4px;
    text-transform: lowercase;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-image: url(/wp-content/themes/krynnvelormarn/assets/images/ynnvelor.png);
    background-size: cover;
    background-position: center;
}

.contact-description {
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.36px;
    width: 506px;
    margin-left: auto;
    margin-top: 40px;
}

.footer-section {
    overflow: hidden;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 80px;
    min-height: 236px;
}

.footer-bg-text {
    font-family: 'Goldman', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 10vw, 180px);
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px #e0e0e0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

.footer-decoration {
    position: absolute;
    right: 355px;
    top: 0;
    width: 206px;
    height: 236px;
    object-fit: contain;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 1040px;
    max-width: 100%;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    font-size: 18px;
    line-height: 1.2;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.2;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: block;
    overflow: hidden;
}

.footer-socials img {
    width: 100%;
    height: 100%;
}

.cookie-banner {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: #fff;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.cookie-text {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
}

.cookie-text p {
    margin-bottom: 16px;
}

.cookie-text p:last-child {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
}

.cookie-btn {
    flex: 1;
    padding: 22px 40px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(to right, #003499, #0991d6);
}

.cookie-btn-settings {
    background: linear-gradient(to right, #8a9bd1, #95b3e1);
}

@media (max-width: 768px) {
    .header-inner {
        padding: 13px 20px;
    }

    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-logo span {
        font-size: 24px;
    }

    .mobile-menu {
        padding: 20px;
    }

    .hero {
        padding: 40px 20px;
        height: auto;
        gap: 408px;
    }

    .hero-title {
        font-size: 50px;
        width: 100%;
    }

    .hero-character {
        width: 390px;
        height: 380px;
        right: 50%;
        transform: translateX(50%);
        top: 102px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .hero-description {
        width: 100%;
    }

    .style-nest-inner {
        padding: 40px 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .style-nest-decoration {
        left: 0;
        top: auto;
        bottom: -30px;
        width: 376px;
        height: 415px;
    }

    .style-nest-heading {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        gap: 7px;
    }

    .style-nest-heading-text {
        font-size: 63px;
        letter-spacing: -5px;
    }

    .style-nest-card {
        width: 53px;
        height: 64px;
    }

    .style-nest-card:nth-child(2) {
        margin-left: 4px;
        margin-top: 4px;
    }

    .style-nest-card:nth-child(3) {
        margin-left: 9px;
        margin-top: 9px;
    }

    .style-nest-content {
        width: 100%;
    }

    .why-here-inner {
        padding: 40px 20px;
        gap: 20px;
    }

    .why-here-title {
        font-size: 32px;
    }

    .why-here-games {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-here-games .game-thumb {
        flex: none;
        width: 180px;
        height: 180px;
    }

    .glow-note-inner {
        height: auto;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .glow-note-top {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 232px;
    }

    .glow-note-top .b1 { left: 0; top: 45px; width: 321px; height: 52px; }
    .glow-note-top .b2 { left: 0; top: 93px; width: 100%; height: 40px; }
    .glow-note-top .b3 { left: 0; top: 133px; width: 201px; height: 40px; }
    .glow-note-top .b4 { left: 0; top: 185px; width: 101px; height: 26px; }
    .glow-note-top .b5 { left: 0; top: 0; width: 162px; height: 26px; }
    .glow-note-top .b6 { left: 0; top: 26px; width: 60px; height: 19px; }
    .glow-note-top .b7 { left: 0; top: 211px; width: 130px; height: 21px; }

    .glow-text-main {
        font-size: 44px;
        left: 3.5px;
        top: 51px;
        letter-spacing: -2.2px;
    }

    .glow-text-sub1 {
        left: 6px;
        top: 6px;
        font-size: 18px;
        line-height: 19.64px;
        letter-spacing: -0.72px;
        width: 182px;
        text-align: left;
    }

    .glow-text-sub2 {
        left: 3px;
        top: 193px;
        font-size: 18px;
        line-height: 19.64px;
        letter-spacing: -0.72px;
        width: 126px;
    }

    .glow-text-sub3 {
        left: 1.68px;
        top: 97px;
        font-size: 44px;
        line-height: 0.8;
        letter-spacing: -2.2px;
        width: 481px;
    }

    .glow-note-title {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        font-size: 70px;
        letter-spacing: -5.6px;
        width: 100%;
    }

    .glow-note-bottom {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 191px;
    }

    .glow-note-bottom .b1 { left: 0; top: 0; width: 100%; height: 95px; }
    .glow-note-bottom .b2 { left: 271px; top: 95px; width: 119px; height: 96px; }
    .glow-note-bottom .b3 { left: 0; top: 95px; width: 271px; height: 38px; }
    .glow-note-bottom .b4 { left: 140px; top: 132px; width: 132px; height: 28px; }

    .glow-bottom-text1 {
        right: 2px;
        top: 9px;
        font-size: 44px;
        line-height: 0.902;
        letter-spacing: -2.2px;
        width: 388px;
    }

    .glow-bottom-text2 {
        right: 131px;
        top: 106px;
        font-size: 26px;
        line-height: 28.6px;
        letter-spacing: -1.04px;
        width: 266px;
    }

    .glow-bottom-text3 {
        left: 275px;
        top: 105px;
        font-size: 26px;
        line-height: 28.6px;
        letter-spacing: -1.04px;
        width: 111px;
    }

    .game-spots-inner {
        padding: 40px 20px;
        gap: 20px;
    }

    .game-spots-title {
        font-size: 32px;
    }

    .game-spots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-spot-card.card-salon { order: 1; }
    .game-spot-card.card-sweet { order: 2; }
    .game-spot-card.card-glam { order: 3; }
    .game-spot-card.card-room { order: 4; }

    .catalog-gallery-inner {
        padding: 40px 20px;
        gap: 20px;
    }

    .catalog-title {
        font-size: 32px;
    }

    .catalog-games {
        flex-wrap: wrap;
        justify-content: center;
    }

    .catalog-games .catalog-game-link {
        flex: none;
        width: 180px;
        height: 180px;
    }

    .catalog-stats-inner {
        padding: 40px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .policy-inner {
        padding: 40px 20px;
        gap: 20px;
    }

    .policy-title {
        font-size: 32px;
    }

    .game-hero-inner {
        padding: 40px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .game-hero-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .game-hero-title {
        font-size: 32px;
    }

    .game-detail-inner {
        padding: 40px 20px;
        gap: 20px;
    }

    .game-detail-title {
        font-size: 32px;
    }

    .game-detail-img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }

    .contact-inner {
        padding: 40px 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-decoration {
        left: -74px;
        top: -35px;
        transform: none;
        width: 366px;
        height: 477px;
    }

    .contact-address {
        width: 100%;
    }

    .contact-images {
        margin: 10px auto 0;
    }

    .contact-email {
        margin-top: -50px;
    }

    .contact-email-text {
        font-size: 28.68px;
        letter-spacing: -1.43px;
    }

    .contact-email-masked {
        font-size: 28.68px;
        letter-spacing: -1.43px;
    }

    .contact-description {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .footer-inner {
        padding: 40px 20px;
        min-height: auto;
    }

    .footer-bg-text {
        top: 126px;
    }

    .footer-decoration {
        right: auto;
        left: 266px;
        top: -18px;
        width: 150px;
        height: 171px;
    }

    .footer-content {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-logo span {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cookie-title {
        font-size: 36px;
    }

    .cookie-content {
        padding: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-text {
        font-size: 16px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title,
.hero-description,
.hero-character,
.btn-play,
.why-here-title,
.game-spots-title,
.catalog-title,
.policy-title,
.game-hero-title,
.game-detail-title,
.style-nest-heading,
.glow-note-title {
    animation: fadeInUp 0.8s ease both;
}

.hero-character {
    animation: fadeInUp 0.8s ease both, float 6s ease-in-out infinite 0.8s;
}

.header-nav a,
.mobile-menu a,
.footer-links a,
.style-nest-link {
    position: relative;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.header-nav a::after,
.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #004ddc;
    transition: width 0.3s ease;
}

.header-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover {
    color: #004ddc;
}

.header-nav a:hover::after,
.footer-links a:hover::after {
    width: 100%;
}

.style-nest-link:hover {
    opacity: 0.75;
}

.header-logo,
.footer-logo {
    transition: transform 0.3s ease;
}

.header-logo:hover,
.footer-logo:hover {
    transform: scale(1.04);
}

.btn-play,
.cookie-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-play:hover,
.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 52, 153, 0.35);
    filter: brightness(1.08);
}

.btn-play:active,
.cookie-btn:active {
    transform: translateY(0);
}

.why-here-games .game-thumb,
.catalog-games .catalog-game-link {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-here-games .game-thumb img,
.catalog-games .catalog-game-link img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.why-here-games .game-thumb:hover,
.catalog-games .catalog-game-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.why-here-games .game-thumb:hover img,
.catalog-games .catalog-game-link:hover img {
    transform: scale(1.08);
    filter: saturate(1.15);
}

.game-spot-card,
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.game-spot-card:hover,
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.game-spot-card.dark:hover,
.stat-card.dark:hover {
    background: #004ddc;
}

.game-spot-card.light:hover,
.stat-card.light:hover {
    background: #0080ff;
}

.style-nest-card {
    transition: transform 0.4s ease;
}

.style-nest-card:hover {
    transform: translate(-4px, -4px);
    z-index: 10;
}

.contact-img {
    transition: transform 0.4s ease;
}

.contact-img:hover {
    transform: scale(1.05);
    z-index: 5;
}

.footer-socials a {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.1);
    filter: brightness(1.15);
}

.hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger:hover span {
    background: #0080ff;
}

.blue-block {
    transition: transform 0.4s ease, background 0.3s ease;
}

.glow-note-section:hover .blue-block {
    background: #003499;
}

.cookie-banner {
    animation: fadeIn 0.3s ease;
}

.cookie-content {
    animation: fadeInUp 0.4s ease;
}
