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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(33deg, #1B2426 -33.32%, #07272E 102.99%);
    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;
    backdrop-filter: blur(15px);
    z-index: 1000;

}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgb(48, 98, 112);
    border-radius: 20px;
    margin: 15px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: #1B2426;
    padding: 15px 30px;
}

.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;
    border: 2px solid rgb(48, 98, 112);
    border-radius: 20px;
    margin: 15px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: #1B2426;
    padding: 15px 30px;
}

.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: #276270;
}

.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: #276270;
    color: #FFFFFF;
}

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

.btn-secondary {
    background: transparent;
    color: #42dff4;
    border: 2px solid #4280f4;
}

.btn-secondary:hover {
    background: #42b0f4;
    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: 1300px;
    margin: 0 auto;
    border: 3px solid #cee3ff;
    padding: 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.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;*/
}

.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: #260b0b;*/
}

.game-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: center;
}

.game-image {
    position: relative;
}

.game-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 125px;
    /*box-shadow: 0 25px 50px rgba(126, 255, 51, 0.6);*/
    /*border: 4px solid rgba(140, 255, 0, 0.6);*/
}
@media(max-width: 980px){
    .game-image img {
        width: 100%;
        max-width: 400px;
        border-radius: 25px;
        /*box-shadow: 0 25px 50px rgba(126, 255, 51, 0.6);*/
        /*border: 4px solid rgba(140, 255, 0, 0.6);*/
    }
}
.game-info{
    /*border: 3px solid green;*/
    /*padding: 10px;*/
    /*border-radius: 30px;*/
    /*backdrop-filter: blur(10px);*/
    text-align: center;
}
.game-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    color: #67b9e5;
}

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

/* Game Features */
.game-features {
    padding: 40px 0;
    /*background: linear-gradient(135deg, #501515 0%, #260b0b 100%);*/
}

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

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

.feature-card {
    background: linear-gradient(135deg,
    rgba(21, 57, 62, 0.6) 0%,
    rgba(11, 35, 38, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 105px;
    border: 1px solid rgba(66, 122, 244, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(66, 244, 244, 0.3);
    box-shadow: 0 20px 40px rgba(66, 170, 244, 0.15);
}

.feature-endless {
    background: linear-gradient(135deg,
    rgba(26, 49, 80, 0.6) 0%,
    rgba(21, 28, 62, 0.8) 100%);
}

.feature-retro {
    background: linear-gradient(135deg,
    rgba(21, 62, 62, 0.6) 0%,
    rgba(26, 59, 80, 0.8) 100%);
}

.feature-entertainment {
    background: linear-gradient(135deg,
    rgba(26, 78, 80, 0.6) 0%,
    rgba(21, 40, 62, 0.8) 100%);
}

.feature-interactive {
    background: linear-gradient(135deg,
    rgba(26, 49, 80, 0.6) 0%,
    rgba(21, 28, 62, 0.8) 100%);
}

.feature-access {
    background: linear-gradient(135deg,
    rgba(26, 74, 80, 0.6) 0%,
    rgba(21, 35, 62, 0.8) 100%);
    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;
    background: linear-gradient(135deg, #67e5e1, #004eb3);
    border-radius: 15px;
    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: #260b0b;*/
}

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

.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 rgba(55, 255, 0, 0.5);*/
    /*transition: transform 0.4s ease, box-shadow 0.4s ease;*/
    /*border: 4px solid rgba(64, 255, 0, 0.15);*/
}

.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(135deg, #501515 0%, #260b0b 100%);*/
}

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

.reviews-grid {
    /*display: grid;*/
    /*grid-template-columns: repeat(1, 1fr);*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(21, 44, 62, 0.4);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid rgba(66, 244, 244, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    max-width: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.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(66, 116, 244, 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(66, 202, 244, 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: #00eaff;
    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: #260b0b;*/
}
.contact-container{
    background: rgba(0, 38, 69, 0.3);
    border: 2px solid #003380;
    padding: 40px;
    border-radius: 40px;
}
.contact h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #67e5db;
}

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

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(21, 61, 62, 0.4);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(66, 116, 244, 0.2);
}

.contact-form {
    width: 100%;
}

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

.contact-form input {
    background: rgba(11, 22, 38, 0.6);
    border: 1px solid rgba(66, 211, 244, 0.3);
    border-radius: 15px;
    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: #4274f4;
    box-shadow: 0 0 0 3px rgba(66, 217, 244, 0.1);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    /*background: #260b0b;*/
    border-top: 1px solid rgba(66, 197, 244, 0.1);
}

.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(66, 143, 244, 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: #42caf4;
}

/* 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 #4295f4;
}

.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: #42b0f4;
    color: #FFFFFF;
}

.cookie-buttons .btn-secondary {
    background: transparent;
    color: #427af4;
    border: 2px solid #4280f4;
}

/* 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(10, 36, 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;
}