/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2e2500;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #f5f5f5;
    color: #000;
    border: #8c7900 5px solid;
    padding: 40px;
    border-radius: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-accept, .btn-refuse {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #615100;
    color: #fff;
}

.btn-accept:hover {
    background: #9f5a00;
}

.btn-refuse {
    background: #fff;
    color: #613f00;
    border: 2px solid #612c00;
}

.btn-refuse:hover {
    background: #fff4f4;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #2e1a00;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff8000;
    font-weight: 700;
    font-size: 18px;
}

.logo img {
    width: 30px;
    height: 30px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #985e23;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 60px 80px;
}

.hero-content {
    background: #f5f5f5;
    color: #000;
    border-radius: 30px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #2e1c00;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-text {
    font-weight: 700;
    color: #000;
    margin: 30px 0 !important;
    font-size: 18px;
}



.steam-btn span {
    font-size: 14px;
    line-height: 1.2;
}

.hero-image {
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Description Section */
.description {
    padding: 80px 60px;
}

.description-content {
    background: #f5f5f5;
    color: #000;
    border-radius: 30px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.description-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e1c00;
}

.subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin-bottom: 30px;
}

.description-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.description-text .cta-text {
    font-weight: 700;
    color: #000;
    margin: 30px 0 !important;
    font-size: 18px;
}

.description-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Features Section */
.features {
    padding: 80px 20px;
}

.features h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: transparent;
    border: 3px solid rgba(255, 217, 145, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ffa600;
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    width: 60px;
    height: 60px;

}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    color: #fff;
}

.steam-download {
    text-align: left;
    margin: 60px 0;
}

.gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.gallery-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Facts Section */
.facts {
    padding: 80px 20px;
}

.facts h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #fff;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.fact-card {
    background: transparent;
    border: 3px solid rgba(255, 217, 145, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    border-color: #ffd500;
}

.fact-icon {
    margin-bottom: 25px;
}

.fact-icon img {
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
}

.fact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.fact-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
    color: #fff;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: transparent;
    border: 3px solid rgba(255, 214, 152, 0.3);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.review-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    color: #fff;
}

.stars {
    color: #ffcc00;
    font-size: 16px;
    margin-bottom: 10px;
}

.reviewer {
    font-size: 14px;
    opacity: 0.7;
    font-weight: 600;
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 80px 60px;
}

.contact-content {
    background: #f5f5f5;
    color: #000;
    border-radius: 30px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2e1f00;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    margin: 40px 0;
}

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

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

.contact-form input {
    padding: 15px 20px;
    border: 2px solid #5e5100;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form input:focus {
    outline: none;
    border-color: #ffa600;
}

.contact-form button {
    background: #5e4300;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #8c5b00;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 60px 60px 40px;
}

.footer-content {
    background: #f5f5f5;
    color: #000;
    border-radius: 30px;
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffae00;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo img {
    width: 30px;
    height: 30px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    color: #5e4000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #bd9700;
}

.footer-bottom {
    background: #f5f5f5;
    color: #000;
    border-radius: 30px;
    padding: 30px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom span {
    color: #5e4800;
    font-size: 14px;
}

.footer-bottom a {
    color: #5e4300;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #a67f00;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 40px 80px;
    }
    
    .hero-content {
        padding: 40px;
    }
    
    .description {
        padding: 80px 40px;
    }
    
    .description-content {
        padding: 40px;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact {
        padding: 80px 40px;
    }
    
    .contact-content {
        padding: 40px;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 60px 40px 40px;
    }
    
    .footer-content,
    .footer-bottom {
        padding: 30px 40px;
    }
    
    .hero-content h1,
    .description-text h2,
    .contact-info h2 {
        font-size: 36px;
    }
    
    .features h2,
    .facts h2 {
        font-size: 36px;
    }
    
    .features-grid,
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .description,
    .contact {
        padding: 60px 20px;
    }
    
    .description-content,
    .contact-content {
        padding: 30px;
    }
    
    .description-text h2,
    .contact-info h2 {
        font-size: 28px;
    }
    
    .features,
    .facts {
        padding: 60px 20px;
    }
    
    .features h2,
    .facts h2 {
        font-size: 28px;
    }
    
    .features-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-images {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 20px 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .description-text h2,
    .contact-info h2,
    .features h2,
    .facts h2 {
        font-size: 24px;
    }
    
    .feature-card,
    .fact-card,
    .review-card {
        padding: 25px 20px;
    }
    
    .steam-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .steam-btn img {
        width: 24px;
        height: 24px;
    }
}