body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    border-bottom: 2px solid #ffa500;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #ff7a00;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    background-color: #ffe6cc;
    color: #ff7a00;
}

.burger {
    display: none;
    font-size: 28px;
    color: #ff7a00;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 64px;
        right: 24px;
        background: #fff8f0;
        flex-direction: column;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 16px;
        display: none;
        border-radius: 8px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: block;
    }
}

.hero-section {
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
    color: #333;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-image-left img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 36px;
    color: #ff7a00;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    background-color: #ff7a00;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background-color: #e96a00;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-left img {
        margin: 0 auto;
    }
}

.about-game {
    padding: 80px 20px;
    background-color: #fff8f0;
}

.container-about {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h2 {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.about-text .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.about-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-images img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .container-about {
        flex-direction: row;
        align-items: flex-start;
    }

    .about-text {
        flex: 2;
        padding-right: 40px;
    }

    .about-images {
        flex: 1;
        flex-direction: column;
        align-items: center;
    }
}

.why-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.why-text {
    flex: 1 1 600px;
}

.why-text h2 {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.why-text .subtitle {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #555;
}

.why-text p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.why-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.why-text ul li {
    margin-bottom: 12px;
    font-size: 16px;
}

.why-text .highlight {
    font-weight: 600;
    color: #ff7a00;
    font-size: 17px;
}

.why-image {
    flex: 1 1 400px;
    text-align: center;
}

.why-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .why-container {
        flex-direction: column-reverse;
    }

    .why-image img {
        max-width: 100%;
    }
}

.features-section {
    padding: 80px 20px;
    background-color: #fff8f0;
    color: #333;
}

.container-features {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.features-section h2 {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-6px);
}

.feature-item i {
    font-size: 36px;
    color: #ff7a00;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
}

.container-contact {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    font-size: 32px;
    color: #ff7a00;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info a {
    color: #ff7a00;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1 1 500px;
    background: #fff8f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 6px;
    margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    resize: vertical;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #e96a00;
}

@media (max-width: 768px) {
    .container-contact {
        flex-direction: column;
    }
}

.site-footer {
    background-color: #fff8f0;
    border-top: 2px solid #ff7a00;
    padding: 40px 20px 20px;
    color: #555;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff7a00;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    margin: 0 12px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-copy {
    color: #888;
    margin-top: 10px;
}

.privacy-section {
    padding: 80px 20px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.container-privacy {
    max-width: 900px;
    margin: auto;
}

.privacy-section h2 {
    color: #ff7a00;
    font-size: 32px;
    margin-bottom: 10px;
}

.privacy-section h3 {
    color: #ff7a00;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    margin-bottom: 8px;
}

.privacy-section a {
    color: #ff7a00;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.highlight-privacy {
    background: #fff8f0;
    padding: 20px;
    border-left: 4px solid #ff7a00;
    margin-top: 30px;
    font-weight: 500;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #fff8f0;
    text-align: center;
}

.thanks-container {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.thanks-container h1 {
    font-size: 36px;
    color: #ff7a00;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 16px;
    margin-bottom: 14px;
    color: #333;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: #ff7a00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background-color: #e96a00;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff8f0;
    border: 1px solid #ff7a00;
    border-radius: 12px;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    display: none;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: auto;
}

.cookie-banner p {
    margin: 0;
    color: #333;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

#accept-cookies {
    background-color: #ff7a00;
    color: #fff;
}

#reject-cookies {
    background-color: #e0e0e0;
    color: #333;
}