* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #8B4CB8 0%, #6B3996 100%);
    color: #2D1B3D;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.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.7);
    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: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2D1B3D;
}

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

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

.btn-accept, .btn-reject {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept {
    background: #2D1B3D;
    color: white;
}

.btn-accept:hover {
    background: #1A0F24;
}

.btn-reject {
    background: transparent;
    color: #2D1B3D;
    border: 2px solid #2D1B3D;
}

.btn-reject:hover {
    background: #2D1B3D;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #8B4CB8 0%, #6B3996 100%);
    padding: 20px 0;
}

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

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

.logo-icon {
    font-size: 24px;
    color: white;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #F8D7FF;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F8D7FF;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

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

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

/* Main sections */
section {
    margin: 20px;
    margin-top: 40px;
}

section:first-child {
    margin-top: 120px;
}

/* Hero Section */
.hero {
    background: rgba(248, 215, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2D1B3D;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #2D1B3D;
    line-height: 1.5;
}

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



.steam-logo {
    width: 32px;
    height: 32px;
}

.steam-logo svg {
    width: 100%;
    height: 100%;
}

.steam-btn span {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

/* Description Section */
.description {
    background: rgba(248, 215, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.description-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2D1B3D;
    margin-bottom: 20px;
    line-height: 1.1;
}

.subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #6B3996;
    margin-bottom: 30px;
}

.description-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #2D1B3D;
    line-height: 1.5;
}

.description-image img {
    width: 100%;
    border-radius: 20px;
}

/* Features Section */
.features {
    background: rgba(248, 215, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
}

.features h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2D1B3D;
    margin-bottom: 50px;
    line-height: 1.1;
}

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

.features-grid .feature-card:nth-child(4),
.features-grid .feature-card:nth-child(5) {
    grid-column: span 1;
}

.features-grid .feature-card:nth-child(4) {
    grid-column: 1 / 3;
}

.features-grid .feature-card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
}

.feature-card {
    background: #6B3996;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 57, 150, 0.3);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.astronaut-icon {
    width: 60px;
    height: 60px;
    position: relative;
}

.astronaut-icon .helmet {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astronaut-icon .visor {
    width: 30px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 15px 15px 5px 5px;
}

.astronaut-icon .body {
    width: 35px;
    height: 20px;
    background: #fff;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
}

.astronaut-icon .body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 15px;
    background: #6B3996;
    border-radius: 5px;
}

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

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
}

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

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

/* Facts Section */
.facts {
    background: rgba(248, 215, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
}

.facts h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2D1B3D;
    margin-bottom: 50px;
    line-height: 1.1;
}

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

.facts-grid .fact-card:nth-child(4),
.facts-grid .fact-card:nth-child(5) {
    grid-column: span 1;
}

.facts-grid .fact-card:nth-child(4) {
    grid-column: 1 / 3;
}

.facts-grid .fact-card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
}

.fact-card {
    background: #6B3996;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 57, 150, 0.3);
}

.fact-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

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

.fact-card p {
    font-size: 14px;
    line-height: 1.5;
}

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

.review {
    background: #6B3996;
    padding: 30px;
    border-radius: 20px;
    color: white;
}

.review p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.reviewer {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    background: rgba(248, 215, 255, 0.95);
    border-radius: 30px;
    padding: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: #2D1B3D;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #2D1B3D;
    line-height: 1.5;
}

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

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

.contact-form input {
    padding: 20px;
    border: 3px solid #6B3996;
    border-radius: 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: #6B3996;
    font-weight: 500;
}

.contact-form input:focus {
    border-color: #8B4CB8;
    box-shadow: 0 0 10px rgba(139, 76, 184, 0.3);
}

.submit-btn {
    padding: 20px;
    background: #6B3996;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: #8B4CB8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(248, 215, 255, 0.95);
    margin: 20px;
    border-radius: 30px 30px 0 0;
    padding: 50px 60px 30px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

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

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

.footer-nav a {
    color: #2D1B3D;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(107, 57, 150, 0.3);
    padding-top: 20px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #2D1B3D;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .description-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid,
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card:nth-child(4),
    .features-grid .feature-card:nth-child(5),
    .facts-grid .fact-card:nth-child(4),
    .facts-grid .fact-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-text h1,
    .description-text h2,
    .features h2,
    .facts h2,
    .contact-info h2 {
        font-size: 32px;
    }
    
    section {
        margin: 10px;
        padding: 40px 30px;
    }
    
    .hero,
    .description,
    .features,
    .facts,
    .contact,
    .footer {
        border-radius: 20px;
        padding: 40px 30px;
    }
    
    .footer {
        border-radius: 20px 20px 0 0;
    }
    
    .features-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-content {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .description-text h2,
    .features h2,
    .facts h2,
    .contact-info h2 {
        font-size: 24px;
    }
    
    section {
        padding: 30px 20px;
    }
    
    .feature-card,
    .fact-card,
    .review {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-nav {
        gap: 15px;
    }
}