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

body {
    font-family: 'Inter', sans-serif;
    /*background: #260b0b;*/
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}
.wrapper{
    /*background-image: url("./assets/main-bg.webp");*/
    /*background-size: cover;*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
}
html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);

    border-bottom: 2px solid rgba(255, 210, 255, 0.35);
    box-shadow: 0 8px 28px rgba(140, 90, 200, 0.15);
    z-index: 2000;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 35px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffe7c9, #f2b9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(200, 150, 255, 0.45);
}
.logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 0 14px rgba(255, 240, 255, 0.65);
}
.brand-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: #4c2a7f;
    text-shadow: 0 0 14px rgba(255, 220, 255, 0.6);
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.4rem;
}
.nav-link {
    position: relative;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #7b4fc8;
    transition: 0.3s ease;
}
.nav-link:hover {
    color: #a15cff;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ffc47a, #f78aff);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.btn-primary {
    position: relative;
    padding: 10px 28px;
    background: linear-gradient(90deg, #ffb46d, #c98cff);
    color: #fff;
    border-radius: 40px;
    font-weight: 700;
    box-shadow: 0 0 18px rgba(200, 130, 255, 0.45);
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(220, 140, 255, 0.6);
}
.btn-primary .btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 40px;
    box-shadow: 0 0 30px rgba(255, 180, 255, 0.7);
    opacity: 0;
    transition: 0.35s ease;
}
.btn-primary:hover .btn-glow {
    opacity: 1;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #4c2a7f;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    background: linear-gradient(
            180deg,
            #ffe0b3 0%,
            #f7c5ff 40%,
            #d9b3ff 100%
    );
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
    top: -120px;
    left: -100px;
    filter: blur(80px);
}
.hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 192, 120, 0.45), transparent 70%);
    bottom: -100px;
    right: -80px;
    filter: blur(65px);
}
.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    padding: 20px;
}
.hero-title {
    font-size: 3.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: #5a2b8a;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 240, 255, 0.6);
}
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #5e3d6c;
    max-width: 720px;
    margin: 0 auto 3rem;
    padding: 18px 22px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 200, 255, 0.3);
}
.google-play-btn img {
    height: 65px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(120, 80, 180, 0.25);
    transition: 0.35s ease;
}
.google-play-btn:hover img {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(150, 100, 220, 0.35);
}

/* Platform Panic Section */
.platform-panic {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffe6c9 0%, #fcd2ff 45%, #e6c8ff 100%);
    position: relative;
    overflow: hidden;
}
.platform-panic::before,
.platform-panic::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
}
.platform-panic::before {
    top: -120px;
    left: -100px;
    background: #ffe0ae;
}
.platform-panic::after {
    bottom: -110px;
    right: -80px;
    background: #ffb8ff;
}
.game-content {
    display: grid;
    grid-template-columns: 460px 1fr;
    align-items: center;
    gap: 4rem;
}
.game-image {
    position: relative;
}
.image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255, 220, 255, 0.6), transparent 70%);
    border-radius: 30px;
    filter: blur(25px);
    z-index: 0;
}
.game-image img {
    width: 100%;
    border-radius: 28px;
    position: relative;
    z-index: 2;
    box-shadow:
            0 28px 45px rgba(150, 90, 220, 0.25),
            0 0 25px rgba(255, 200, 255, 0.5);
    transition: transform 0.4s ease;
}
.game-image img:hover {
    transform: scale(1.03);
}
.game-info {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
    padding: 32px 38px;
    border-radius: 32px;
    border: 2px solid rgba(255, 220, 255, 0.5);

    box-shadow:
            0 10px 40px rgba(180, 120, 255, 0.25),
            0 0 18px rgba(255, 200, 255, 0.4);
}
.game-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: #5b2a8a;
    margin-bottom: 1.8rem;
    text-shadow: 0 0 14px rgba(255, 230, 255, 0.55);
}
.game-info p {
    color: #5a3b6c;
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Game Features */
.game-features {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffe1c7 0%, #f7ccff 45%, #debaff 100%);
    position: relative;
    overflow: hidden;
}
.game-features::before,
.game-features::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
}
.game-features::before {
    top: -120px;
    left: -80px;
    background: #ffe4ad;
}
.game-features::after {
    bottom: -130px;
    right: -100px;
    background: #ffb8ff;
}
.game-features h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #5c2a8a;
    text-shadow: 0 0 16px rgba(255, 240, 255, 0.55);
    margin-bottom: 4rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1250px;
    margin: 0 auto;
}
.feature-access {
    grid-column: 1 / 4;
}
.feature-interactive {
    grid-column: span 2;
}
.feature-retro {
    grid-column: span 1;
}
.feature-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    border-radius: 26px;
    padding: 32px 28px;
    border: 2px solid rgba(255, 210, 255, 0.45);
    box-shadow: 0 0 25px rgba(180, 120, 255, 0.25),
    0 15px 35px rgba(120, 80, 200, 0.15);
    position: relative;
    transition: 0.35s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(220, 150, 255, 0.4);
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffc97d, #d492ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 200, 255, 0.55);
    margin-bottom: 1.4rem;
}
.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}
.feature-card h3 {
    color: #4d2a75;
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.feature-card p {
    color: #5a3b6c;
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.95;
}

@media (max-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .feature-access {
        grid-column: 1 / 3;
    }
    .feature-interactive,
    .feature-retro {
        grid-column: span 1;
    }
}


@media (max-width: 980px) {
    .game-features h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 650px;
    }
    .feature-access,
    .feature-interactive,
    .feature-retro {
        grid-column: 1 / -1 !important;
    }
    .feature-card {
        padding: 28px 24px;
        border-radius: 22px;
    }
    .feature-icon {
        width: 58px;
        height: 58px;
    }
    .feature-card h3 {
        font-size: 1.45rem;
    }
}

@media (max-width: 720px) {
    .game-features {
        padding: 70px 0;
    }
    .game-features h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .features-grid {
        max-width: 500px;
        gap: 1.7rem;
    }
    .feature-card {
        padding: 26px 20px;
    }
    .feature-card p {
        font-size: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 540px) {
    .game-features {
        padding: 60px 0;
    }
    .game-features h2 {
        font-size: 1.85rem;
    }
    .feature-card {
        padding: 22px 18px;
        border-radius: 20px;
    }
    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    .feature-card h3 {
        font-size: 1.3rem;
    }
    .feature-card p {
        font-size: 0.95rem;
    }
}


@media (max-width: 420px) {
    .features-grid {
        gap: 1.3rem;
    }
    .feature-card {
        padding: 18px 16px;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    .feature-card h3 {
        font-size: 1.2rem;
    }
    .feature-card p {
        font-size: 0.9rem;
    }
}


/* Game Screenshots */
.game-screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffe6c9 0%, #f8d4ff 45%, #e7caff 100%);
    position: relative;
    overflow: hidden;
}
.game-screenshots::before,
.game-screenshots::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}
.game-screenshots::before {
    top: -120px;
    left: -70px;
    background: #ffdca5;
}
.game-screenshots::after {
    bottom: -100px;
    right: -90px;
    background: #ffb8ff;
}
.game-screenshots h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #5b2a8a;
    text-shadow: 0 0 16px rgba(255, 240, 255, 0.55);
    margin-bottom: 2rem;
}
.screenshots-description {
    text-align: center;
    font-size: 1.2rem;
    max-width: 820px;
    margin: 0 auto 4rem;
    color: #5c3a74;
    opacity: 0.95;
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.4);
    padding: 18px 26px;
    border-radius: 24px;
    backdrop-filter: blur(14px);
    border: 2px solid rgba(255, 220, 255, 0.5);
}
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: masonry;
    gap: 2rem;
    max-width: 1250px;
    margin: 0 auto;
}
.screenshot-large {
    grid-column: span 7;
}
.screenshot-tall {
    grid-column: span 5;
}
.screenshot-wide {
    grid-column: span 12;
}
.screenshot {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 220, 255, 0.45);
    box-shadow:
            0 15px 35px rgba(150, 90, 220, 0.25),
            0 0 25px rgba(255, 200, 255, 0.45);

    transition: 0.4s ease;
}
.screenshot:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
            0 28px 65px rgba(150, 90, 220, 0.35),
            0 0 35px rgba(255, 200, 255, 0.65);
}
.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffe7d1 0%, #f5d6ff 45%, #e9caff 100%);
    position: relative;
    overflow: hidden;
}
.reviews::before,
.reviews::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
}
.reviews::before {
    top: -120px;
    left: -80px;
    background: #ffdca8;
}
.reviews::after {
    bottom: -110px;
    right: -90px;
    background: #ffb8ff;
}
.reviews h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #5b2a8a;
    margin-bottom: 3rem;
    text-shadow: 0 0 18px rgba(255, 230, 255, 0.5);
}
.reviews-grid {
    display: grid;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    grid-template-columns: repeat(12, 1fr);
}
.review-card {
    grid-column: span 4;
    padding: 32px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.45);
    border: 2px solid rgba(255, 210, 255, 0.55);
    backdrop-filter: blur(18px);
    box-shadow:
            0 15px 38px rgba(160, 100, 220, 0.25),
            0 0 25px rgba(255, 200, 255, 0.45);

    transition: 0.35s ease;
}
.review-card-wide {
    grid-column: span 8;
}
.review-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
            0 25px 55px rgba(160, 100, 220, 0.35),
            0 0 40px rgba(255, 200, 255, 0.6);
}

.review-header {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 1.2rem;
}
.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

    border: 3px solid rgba(255, 210, 255, 0.6);
    box-shadow: 0 0 14px rgba(200, 140, 255, 0.35);
}
.reviewer-info {
    display: flex;
    flex-direction: column;
}
.reviewer-name {
    font-weight: 700;
    color: #542a85;
}
.reviewer-age {
    font-size: 0.95rem;
    opacity: 0.7;
}
.review-rating {
    color: #de8fff;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 190, 255, 0.7);
}
.review-text {
    color: #5a3b6c;
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffe7f4 0%, #e8d9ff 100%);
    position: relative;
    overflow: hidden;
}
.contact::before,
.contact::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: 0;
}
.contact::before {
    top: -120px;
    left: -90px;
    background: #ffd0fa;
}
.contact::after {
    bottom: -130px;
    right: -110px;
    background: #d9b8ff;
}
.contact-container {
    position: relative;
    z-index: 2;
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(22px);
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 200, 255, 0.4);
    box-shadow:
            0 10px 40px rgba(180, 120, 255, 0.25),
            0 0 30px rgba(255, 230, 255, 0.4);
}
.contact h2 {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #6b3ea8;
    text-shadow: 0 0 12px rgba(255, 230, 255, 0.6);
}
.contact-description {
    text-align: center;
    opacity: 0.85;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    color: #4b3566;
}
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(255, 200, 255, 0.35);
    box-shadow:
            0 8px 30px rgba(185, 120, 255, 0.25),
            0 0 20px rgba(255, 210, 255, 0.4);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-form input {
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    border: 2px solid rgba(200, 150, 255, 0.45);
    font-size: 1rem;
    color: #492e68;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.contact-form input::placeholder {
    color: rgba(60, 40, 80, 0.35);
}
.contact-form input:focus {
    outline: none;
    border-color: #be8dff;
    box-shadow: 0 0 15px rgba(190, 120, 255, 0.4);
}
.btn-primary {
    background: linear-gradient(90deg, #a06bff, #d08aff);
    color: #ffffff;
    border-radius: 50px;
    padding: 16px 30px;
    box-shadow:
            0 10px 25px rgba(150, 100, 255, 0.35),
            0 0 25px rgba(220, 160, 255, 0.6);

    transition: 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
            0 15px 30px rgba(150, 100, 255, 0.45),
            0 0 30px rgba(220, 160, 255, 0.8);
}


/* Footer */
.footer {
    padding: 70px 0 50px;
    background: linear-gradient(180deg, #fbe8ff 0%, #ede1ff 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 200, 255, 0.4);
}
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: 0;
}
.footer::before {
    top: -110px;
    left: -120px;
    background: #ffd0fa;
}
.footer::after {
    bottom: -140px;
    right: -90px;
    background: #d7b8ff;
}
.footer-content {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 2rem;
    padding: 12px 24px;
    border-radius: 20px;
    background: rgba(255,255,255,0.35);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,200,255,0.4);
    box-shadow: 0 10px 30px rgba(190,130,255,0.25);
}
.footer-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
}
.footer-brand-name {
    font-weight: 800;
    font-size: 1.45rem;
    color: #6c3fa2;
    text-shadow: 0 0 12px rgba(255,230,255,0.6);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(255,200,255,0.3);
    padding-top: 2.2rem;
    position: relative;
    z-index: 2;
}
.footer-info p {
    font-size: 0.95rem;
    color: #5a4872;
    opacity: 0.9;
}
.footer-info strong {
    color: #6c3fa2;
    font-weight: 700;
}
.footer-links {
    display: flex;
    gap: 2.2rem;
}
.footer-links a {
    font-size: 0.95rem;
    color: #6c3fa2;
    text-decoration: none;
    font-weight: 600;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(180,120,255,0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    inset: 0;
    background: rgba(25, 0, 36, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}
.cookie-content {
    background: rgba(255, 245, 255, 0.92);
    border-radius: 28px;
    padding: 2.7rem;
    max-width: 480px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(160, 90, 255, 0.35);
    border: 2px solid rgba(220, 160, 255, 0.45);
    position: relative;
}
.cookie-content::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #ffcdfd;
    opacity: 0.45;
    filter: blur(80px);
    border-radius: 50%;
    top: -60px;
    right: -40px;
}
.cookie-icon {
    margin-bottom: 1.5rem;
}
.cookie-icon img {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 6px 12px rgba(200, 120, 255, 0.4));
}
.cookie-content h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #5d2a8f;
    margin-bottom: 1.4rem;
    letter-spacing: -0.5px;
}
.cookie-content p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #6e5a80;
    margin-bottom: 2.2rem;
    opacity: 0.95;
}
.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cookie-buttons .btn {
    padding: 14px 26px;
    font-size: 1rem;
    border-radius: 26px;
    font-weight: 600;
    transition: all .3s ease;
}
.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, #b96bff, #ffb1ff);
    color: #fff;
    box-shadow: 0 8px 20px rgba(180, 100, 255, 0.4);
}

.cookie-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(160, 80, 255, 0.45);
}
.cookie-buttons .btn-secondary {
    background: transparent;
    border: 2px solid #dba4ff;
    color: #9b56e8;
}
.cookie-buttons .btn-secondary:hover {
    background: rgba(217, 153, 255, 0.25);
    backdrop-filter: blur(4px);
    color: #5d2a8f;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        margin: 10px 15px;
        border-radius: 15px;
    }

    .nav {
        padding: 12px 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -107%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(38, 11, 34, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
    }

    .nav-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        padding: 140px 20px 80px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .game-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .game-info h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-access {
        grid-column: 1;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .cookie-content {
        padding: 2rem;
        margin: 15px;
    }

    .cookie-content h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .game-info h2,
    .game-features h2,
    .game-screenshots h2,
    .reviews h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .review-card {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}
*{
    opacity: 1 !important;
}