body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/hero.webp') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 250px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero .button {
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #ff4081;
    color: white;
    border: none;
    cursor: pointer;
}

.about-game img {
    width: 80%;
    max-width: 600px;
    margin: 20px 0;
}

.about-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-card {
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
}

.about-game>p {
    margin: 0 auto;
    font-size: 20px;
    max-width: 768px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-game>h2 {
    font-size: 40px;
    line-height: 1.3;
}

.benefits {
    background-color: #f9f9f9;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/benefits.webp') bottom center;
}

.benefits>h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #f9f9f9;
}

.benefit-card {
    display: inline-block;
    width: 30%;
    padding: 20px;
    margin: 10px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.reviews .review-slider {
    display: flex;
    overflow-x: scroll;
}

.reviews .review {
    min-width: 300px;
    margin: 10px;
    padding: 110px 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('./images/reviews.webp') no-repeat center top;
    background-size: contain;

    color: #f9f9f9;
    font-size: 20px;
}

.cta {
    background-color: #ff4081;
    color: white;
}

.cta .button {
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    background-color: white;
    color: #ff4081;
    border: none;
    cursor: pointer;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact label {
    display: block;
    margin-top: 10px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

.contact button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4081;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-info {
    margin-top: 20px;
}


.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
}

.footer nav {
    margin-top: 10px;
}

.footer a {
    color: #ff4081;
    text-decoration: none;
    margin: 0 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/* Cookie Consent Popup */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border-radius: 5px;
    text-align: center;
}

.cookie-consent p {
    margin: 0 0 10px;
}

.cookie-consent button {
    padding: 10px 20px;
    background-color: #ff4081;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.page__title {
    text-align: center;
    padding: 250px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/bg1.webp');
    font-size: 35px;
    color: #f9f9f9;
    margin-bottom: 0;
}

.page__section {
    text-align: left;
    padding: 10px 20px;
    background-color: azure;
}