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

body {
    font-family: 'Inter', sans-serif;
    background: #4A535A;
    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;
    background: rgb(74, 83, 90);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border: 2px solid rgb(141, 158, 170);
    border-radius: 20px;
    margin: 15px 90px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #839098;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: #36475e;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #59759a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 223, 244, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #36475e;
    border: 2px solid #36475e;
}

.btn-secondary:hover {
    background: #4d6688;
    color: #FFFFFF;
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
}

.nav-contact {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 80px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: #CEE3FF;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /*border: 3px solid #CEE3FF;*/
    /*padding: 10px;*/
    /*border-radius: 30px;*/
    /*backdrop-filter: blur(10px);*/
}

.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
   
}

.google-play-btn img {
    height: 65px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.google-play-btn:hover {
    transform: translateY(-3px);
}

.google-play-btn:hover img {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Platform Panic Section */
.platform-panic {
    padding: 40px 0;
    background: linear-gradient(15deg, #556B7C -22.92%, #5F5959 113.17%);
}

/* Контейнер двух колонок */
.game-content {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}


.game-image {
    position: relative;
    z-index: 2;
    margin-right: -90px;
    border-radius: 22px;
    overflow: hidden;
}

.game-video {
    width: 150%;
    display: block;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: -1;
}


.game-info {
    position: relative;
    z-index: 1;
    border: 3px solid #cee3ff;
    padding: 25px 30px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(206, 227, 255, 0.7);
    background: rgba(10, 20, 35, 0.35);
}

.game-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: #CEE3FF;
}

.game-info p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    line-height: 1.7;
}


@media (max-width: 1100px) {
    .game-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .game-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .game-info {
        margin-top: 0;
    }

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


/* Game Features */
.game-features {
    padding: 40px 0;
    background: linear-gradient(353deg, #5F5959 15.94%, #556B7C 114.47%);
}

.game-features h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #CEE3FF;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgb(74, 83, 90);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 20px rgb(206, 227, 255);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgb(74, 83, 90) 0%,
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgb(96, 108, 117);
    box-shadow: 0 20px 40px rgb(74, 83, 90);
}

.feature-endless {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.feature-retro {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.feature-entertainment {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.feature-interactive {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.feature-access {
    background: linear-gradient(122deg, #00070A -57.9%, #4A535A 99.37%);
    grid-column: 1 / -1;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(135deg, #EEF0FF 0%, #51598C 100%);
    color: white;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Game Screenshots */
.game-screenshots {
    padding: 40px 0;
    background: linear-gradient(129deg, #5F5959 48.39%, #556B7C 98.29%);
}

.game-screenshots h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #CEE3FF;
}

.screenshots-description {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto 5rem;
    line-height: 1.7;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot {
    border-radius: 55px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(206, 227, 255);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid rgb(206, 227, 255);
}

.screenshot:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Reviews Section */
.reviews {
    padding: 50px 0;
    background: linear-gradient(81deg, #5F5959 10.77%, #556B7C 89.44%);
}

.reviews h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #cee3ff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(134deg, #00070A -44.34%, #4A535A 100%);
    padding: 2.5rem;
    border-radius: 42px;
    border: 2px solid rgb(206, 227, 255);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(206, 227, 255);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(66, 133, 244, 0.03) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(78, 101, 108, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(93, 116, 135, 0.3);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #FFFFFF;
}

.reviewer-age {
    opacity: 0.8;
    font-size: 0.9rem;
}

.review-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: #5E709F;
    font-size: 1.3rem;
    margin-right: 0.2rem;
}

.review-text {
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(280deg, #556B7C -1.86%, #5F5959 94.89%);
}
.contact-container{
    /*background: rgba(14, 69, 0, 0.3);*/
    /*border: 2px solid green;*/
    /*padding: 40px;*/
    /*border-radius: 40px;*/
}
.contact h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #CEE3FF;
}

.contact-description {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 5rem;
    line-height: 1.7;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid #232B31;
    background: #3E4A54;

}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form input {
    border-radius: 15px;
    border: 1px solid #83A6C6;
    background: #232B31;
    padding: 18px 24px;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus {
    outline: none;
    border-color: #5a8593;
    box-shadow: 0 0 0 3px rgba(107, 144, 170, 0.1);
}
.contact-btn{
    border-radius: 50px;
    background: #83A6C6;
    max-width: 592px;
    width: 100%;
}
/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(244, 66, 66, 0.10);
    background: #4A535A;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 35px;
    height: 35px;
    border-radius: 6px;
}

.footer-brand-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #FFFFFF;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(90, 244, 66, 0.1);
}

.footer-info p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-info strong {
    color: #FFFFFF;
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #556781;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 500px;
    margin: 20px;
    text-align: center;
    color: #333333;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #556d88;
}

.cookie-icon {
    margin-bottom: 1.5rem;
}

.cookie-icon img {
    width: 60px;
    height: 60px;
}

.cookie-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 1.5rem;
}

.cookie-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cookie-buttons .btn {
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 25px;
}

.cookie-buttons .btn-primary {
    background: #527c83;
    color: #FFFFFF;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #6e87bc;
    border: 2px solid #558488;
}

/* 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(11, 29, 38, 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;
}