/* Global Styles */
:root {
    --primary-color: #ff0000;
    --background-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ff3333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', cursive;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.language-selector button {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.language-selector button:hover {
    background-color: var(--primary-color);
}

/* Game Container Styles */
.game-container {
    margin-top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
}

.game-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: inherit;
    z-index: 100;
}

/* Game Features Section */
.game-features {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
}

.feature-description,
.gameplay-tips,
.community-highlight,
.game-summary,
.overview-text {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    line-height: 1.8;
    font-size: 0.9rem;
}

.game-overview {
    margin-top: 3rem;
    padding: 2rem;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.game-overview h2 {
    margin-bottom: 1.5rem;
}

.overview-text {
    max-width: 800px;
    margin: 0 auto;
    background: none;
    border: none;
    padding: 0;
}

/* Screenshots Grid */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.screenshot {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.02);
}

.screenshot img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot:hover img {
    transform: scale(1.05);
}

/* Features List */
.features ul {
    list-style: none;
    padding: 1rem;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 5px;
}

.features li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0;
}

.review {
    background-color: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
}

.review p {
    margin-bottom: 1rem;
}

.review span {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* Footer Styles */
footer {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
}

.footer-content a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }

    .language-selector button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1rem;
    }

    .game-container {
        height: 50vh;
    }

    .screenshot-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .screenshot img {
        height: 180px;
    }

    .feature-description,
    .gameplay-tips,
    .community-highlight,
    .game-summary,
    .overview-text {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .game-overview {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .language-selector {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .language-selector button {
        margin: 0;
    }

    .game-container {
        height: 40vh;
    }

    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot img {
        height: 160px;
    }

    .feature-description,
    .gameplay-tips,
    .community-highlight,
    .game-summary,
    .overview-text {
        font-size: 0.75rem;
        padding: 0.6rem;
    }
    
    .game-overview {
        padding: 1rem;
    }
} 