/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    font-size: 16px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
}
img {
    width: 100%;
}
/* Header */
.header {
    background-color: #1f2937;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    border-radius: 15px;
}
.header .container {
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.header .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}

.nav {
    position: relative;
    width: 100%;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav ul.menu {
    display: none;
    flex-direction: column;
    background-color: #1f2937;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
}

.nav ul.menu.show {
    display: flex;
    width: 100%;
    float: right;
    text-align: center;
    border-radius: 15px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #4caf50;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    float: right;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav ul.menu {
        display: none; /* Hide menu by default */
    }
    section {
        margin: 12px!important;
    }
    .menu-toggle {
        display: block; /* Show menu toggle button */
    }

    .menu.show {
        display: flex; /* Show menu when the toggle is active */
        flex-direction: column;
    }
}

section {
    margin: 50px;
    border-radius: 15px;
}
/* Main Block */
.main-block {
    background: -webkit-linear-gradient(135deg, #ad006d, #4CAF50); /* Chrome, Safari, Opera */
    background: -moz-linear-gradient(135deg, #ad006d, #4CAF50); /* Firefox */
    background: -ms-linear-gradient(135deg, #ad006d, #4CAF50); /* Internet Explorer */
    background: -o-linear-gradient(135deg, #ad006d, #4CAF50); /* Opera */
    background: linear-gradient(135deg, #ad006d, #4CAF50); /* Standard */
    padding: 100px 0;
    text-align: center;
    color: #fff;
    border-radius: 15px;
}

.main-block h1 {
    font-size: 48px;
    margin: 0 0 20px;
}

.main-block p {
    font-size: 20px;
    margin: 0 0 40px;
}

/* Featured Game */
.featured-game {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f4f4f4);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid;
    border-image: linear-gradient(135deg, #4caf50, #1f2937);
    border-image-slice: 1;
    border-radius: 15px;
}

.featured-game h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1f2937;
}

.featured-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-radius: 15px;
}

.featured-content img {
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-info {
    max-width: 500px;
    text-align: left;
}

.featured-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1f2937;
}

.featured-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4b5563;
}

.btn-play {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-play:hover {
    background-color: #ea580c;
}

/* Top Games */
.top-games {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f4f4, #ffffff);
    border-radius: 15px;
}

.top-games h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1f2937;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.game-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #1f2937, #4caf50);
    border-image-slice: 1;
}

.game-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.game-item p {
    color: #6b7280;
}

/* User Reviews */
.reviews {
    background-color: #e5e7eb;
    padding: 60px 0;
    background: -webkit-linear-gradient(135deg, #ad006d, #4CAF50); /* Chrome, Safari, Opera */
    background: -moz-linear-gradient(135deg, #ad006d, #4CAF50); /* Firefox */
    background: -ms-linear-gradient(135deg, #ad006d, #4CAF50); /* Internet Explorer */
    background: -o-linear-gradient(135deg, #ad006d, #4CAF50); /* Opera */
    background: linear-gradient(135deg, #ad006d, #4CAF50); /* Standard */
    border-radius: 15px;
    position: relative;
    overflow-x: hidden;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
}

.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #4caf50, #1f2937);
    border-image-slice: 1;
}

.review-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.review-item p {
    color: #4b5563;
    margin-bottom: 10px;
}

.review-item span {
    font-weight: bold;
    color: #1f2937;
}

.stars {
    color: #4caf50;
    font-size: 20px;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #f4f4f4);
    text-align: center;
    border-radius: 15px;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1f2937;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border: 2px solid;
    border-image: linear-gradient(135deg, #1f2937, #4caf50);
    border-image-slice: 1;
}

.faq-item h3 {
    cursor: pointer;
    color: #1f2937;
}

.faq-item p {
    display: none;
    color: #4b5563;
}

/* Newsletter */
.newsletter {
    background-color: #409544;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    border-radius: 15px;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 300px;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #1f2937;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #111827;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    border-radius: 15px;
}

.footer a {
    color: #4caf50;
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Fixed Cookie Consent Block */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(31, 41, 55, 0.9);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 29;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
}

.cookie-consent a {
    color: #4caf50;
    text-decoration: none;
}

.cookie-consent button {
    padding: 5px 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-consent button:hover {
    background-color: #ea580c;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav ul.menu {
        display: flex;
        flex-direction: column;
        background-color: #1f2937;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .menu.show {
        display: flex;
    }
}
/* Contact Section */
.contact {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.contact h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4caf50;
    outline: none;
}

.btn-submit {
    padding: 12px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #ea580c;
}

/* Contact Information */
.contact-info {
    margin-bottom: 30px;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1f2937;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #4b5563;
}

.contact-info a {
    color: #4caf50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Map */
.map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}
/* Featured Game Section */
.featured-game {
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    border-radius: 15px;
}

.featured-game h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.featured-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-content img {
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
}

.featured-info {
    flex: 1;
}

.featured-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1f2937;
}

.featured-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4b5563;
}

.btn-play {
    padding: 10px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-play:hover {
    background-color: #ea580c;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-content {
        flex-direction: column;
        text-align: center;
    }

    .featured-content img {
        margin: 0 auto 20px;
    }
}
.btn-more-games {
    padding: 12px 20px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-more-games:hover {
    background-color: #ea580c;
}
