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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #4a3500;
    overflow-x: hidden;
}

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

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

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

.cookie-content {
    background: #fff;
    color: #000;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 5px solid yellow;
}

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #333;
}

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

.btn-accept, .btn-refuse {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.btn-accept:hover {
    background: #ffe224;
}

.btn-refuse {
    background: #e7923c;
    color: #fff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #f8a800, #ba8f00);
    z-index: 1000;
    padding: 0;
    transition: background-color 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    transition: all 0.3s ease;
}

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

.nav-menu a:hover {
    color: #f4a63f;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 50px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(151, 59, 0, 0.8);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-note {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero-sidebar {
    flex-shrink: 0;
    width: 300px;
}

.hero-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.steam-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;


    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;

}



/* Game Info Section */
.game-info {
    background: linear-gradient(135deg, #ffab00, #885800);
    padding: 80px 0;
}

.game-info-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.game-image {
    flex: 1;
}

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

.game-text {
    flex: 1;
}

.game-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.game-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Advantages Section */
.advantages {
    background: #3a1606;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    background: #501900;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ffd11a;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #d68e00, #634400);
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review-card {
    background: rgba(78, 37, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f4d03f;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.review-stars {
    margin-bottom: 15px;
}

.stars {
    color: #f4d03f;
    font-size: 18px;
}

.review-author {
    font-weight: 600;
    color: #f4d03f;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #af8800, #8c7a00);
    padding: 80px 0;

}

.gallery-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-subtitle {
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #f4d03f;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery .steam-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    background: #423100;
    padding: 80px 0;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-form-section {
    flex: 1;
}

.contact-form-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

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

.contact-form input {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #f0f0f0;
    color: #333;
}

.submit-btn {
    background: #e7cb3c;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c0a22b;
}

.contact-game-image {
    flex: 1;
}

.contact-game-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #d69a00, #6e4700);
    padding: 30px 0;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #cd8b00, #e37000);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.mobile-active {
        left: 0;
    }
    
    .hero {
        text-align: center;
        padding: 100px 20px 50px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .game-info-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-text h2 {
        font-size: 28px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .game-text h2 {
        font-size: 24px;
    }
    
    .navbar {
        padding: 10px 20px;
    }
    
    .hero {
        padding: 90px 15px 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional animations */
.advantage-card,
.review-card,
.gallery-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.advantage-card:nth-child(1) { animation-delay: 0.1s; }
.advantage-card:nth-child(2) { animation-delay: 0.2s; }
.advantage-card:nth-child(3) { animation-delay: 0.3s; }
.advantage-card:nth-child(4) { animation-delay: 0.4s; }
.advantage-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}