* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cabin', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.top-header {
    background-color: #00bf94;
    padding: 20px 0;
    color: #ffffff;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand-title {
    text-align: left;
}

#game-header {
    font-size: 2.7rem;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 400px) {
    #game-header {
        font-size: 2rem;
    }
}

.game-subtitle {
    font-size: 1.2rem;
    color: #d1e4f6;
    margin-top: 5px;
}

.navigation {
    display: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: #d1e4f6;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 8px 15px;
    background-color: #fd1338;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #d6044c;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    width: 30px;
    height: 20px;
}

.menu-btn span {
    display: block;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .navigation {
        display: block;
    }

    .menu-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .navigation {
        display: none;
    }

    .menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }

    .menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    .navigation.open {
        display: block;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #ff7c43;
        width: 200px;
        padding: 15px;
        border-radius: 10px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu li a {
        display: block;
        width: 100%;
    }
}


.showcase-block {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/pixel-landscape.png') center/cover no-repeat;
    padding: 120px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fafafa;
}

.content-wrapper {
    max-width: 1000px;
    padding: 30px;
    background-color: rgba(34, 34, 34, 0.75);
    border-radius: 10px;
}

.game-heading {
    font-size: 4rem;
    color: #ff8f2f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slogan-text {
    font-size: 1.6rem;
    margin-bottom: 35px;
    color: #eaeaea;
}

.play-btn {
    display: inline-flex;
    align-items: center;
    background-color: #5cb100;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #009500;
}

@media (max-width: 768px) {
    .game-heading {
        font-size: 2.5rem;
    }

    .slogan-text {
        font-size: 1.2rem;
    }

    .play-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

.description-block {
    background-color: #f5f7fa;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    text-align: left;
    color: #333;
}

.description-wrapper {
    max-width: 1000px;
    background-color: #ffffff;
    border: 5px solid #ffcc00;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.description-title {
    font-size: 2.7rem;
    color: #ff7c43;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .description-title {
        font-size: 2rem;
    }

    .description-text {
        font-size: 1rem;
    }
}

.gallery-block {
    background-color: #fff4e0;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.gallery-wrapper {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-container {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover .game-image {
    transform: scale(1.05);
}

.player-reviews {
    background-color: #e1f5fe;
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.reviews-container {
    max-width: 1200px;
    text-align: center;
}

.reviews-heading {
    font-size: 2.6rem;
    color: #004d40;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-comment {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 20px;
}

.reviewer-name {
    font-size: 1rem;
    color: #00796b;
    font-weight: bold;
}

@media (max-width: 768px) {
    .reviews-heading {
        font-size: 2.2rem;
    }

    .review-comment {
        font-size: 1rem;
    }

    .reviewer-name {
        font-size: 0.9rem;
    }
}

.download-block {
    background-color: #fce4ec;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.download-container {
    max-width: 1100px;
}

.download-title {
    font-size: 3rem;
    color: #d81b60;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.download-text-highlight {
    color: #ff4081;
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.game-image {
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

.download-btn .btn-image {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease;
}

.download-btn:hover .btn-image {
    transform: scale(1.1);
}

.contact-block {
    background-color: #f1f8e9;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 800px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    color: #00796b;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.2rem;
    color: #616161;
    margin-bottom: 40px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #00796b;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #c8e6c9;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00796b;
    outline: none;
}

.submit-btn {
    background-color: #4caf50;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #43a047;
}

.thank-you-message {
    display: none;
    background-color: #4caf50;
    color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
}

.site-footer {
    background-color: #004d40;
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    font-size: 1rem;
    color: #b2dfdb;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-link {
    font-size: 1rem;
    color: #80cbc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #4caf50;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.cookie-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-message p {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.accept-cookie-btn {
    background-color: #ffffff;
    color: #4caf50;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accept-cookie-btn:hover {
    background-color: #eeeeee;
}

@media (max-width: 768px) {
    .cookie-message {
        flex-direction: column;
    }

    .accept-cookie-btn {
        margin-top: 15px;
    }
}
