/* Global Styles */
:root {
    --primary-color: #8A2BE2;
    --secondary-color: #4B0082;
    --background-color: #000000;
    --text-color: #ffffff;
}

* {
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher button {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.language-switcher button:hover {
    background: var(--text-color);
    color: var(--background-color);
}

/* Game Container Styles */
.game-container {
    margin-top: 80px;
    padding: 20px 0;
}

.game-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.8);
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
}

.fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.8rem;
    border-radius: 5px;
    z-index: 100;
}

/* Features Section */
.game-features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

/* How to Play Section */
.how-to-play {
    padding: 60px 0;
    background: rgba(138, 43, 226, 0.1);
}

.instructions {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.instructions > div {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.instructions h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instructions p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.instructions ul {
    list-style: none;
    margin-top: 15px;
}

.instructions li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
}

.instructions li::before {
    content: "►";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.gameplay-overview p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.controls-section,
.gameplay-tips,
.power-ups,
.scoring-system {
    transition: transform 0.3s ease;
}

.controls-section:hover,
.gameplay-tips:hover,
.power-ups:hover,
.scoring-system:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.15);
}

/* Reviews Section */
.player-reviews {
    padding: 60px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.player-name {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
}

.footer-content a {
    color: var(--text-color);
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}

/* Why Players Love Section */
.why-players-love {
    padding: 60px 0;
    background: rgba(138, 43, 226, 0.05);
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.love-card {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.love-card:hover {
    transform: translateY(-5px);
}

.love-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.love-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Game Screenshots Section */
.game-screenshots {
    padding: 60px 0;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: scale(1.02);
}

.screenshot-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.screenshot-card p {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Game Intro Section */
.game-intro {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(75, 0, 130, 0.1));
}

.game-intro h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Game Summary Section */
.game-summary {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(75, 0, 130, 0.1), rgba(138, 43, 226, 0.1));
}

.game-summary h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-summary p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.2rem;
    }

    .game-wrapper {
        height: 60vh;
    }

    .features-grid,
    .reviews-grid,
    .love-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .language-switcher button {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .screenshot-card img {
        height: 180px;
    }

    .instructions {
        padding: 15px;
    }

    .instructions > div {
        padding: 20px;
    }

    .instructions h3 {
        font-size: 1.1rem;
    }

    .instructions li {
        font-size: 0.85rem;
    }

    .game-intro h2,
    .game-summary h2 {
        font-size: 1.5rem;
    }

    .game-intro p,
    .game-summary p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1rem;
    }

    .game-wrapper {
        height: 50vh;
    }

    .fullscreen-btn {
        font-size: 0.7rem;
        padding: 8px 16px;
    }

    .love-card h3 {
        font-size: 1rem;
    }

    .screenshot-card img {
        height: 150px;
    }

    .instructions > div {
        padding: 15px;
    }

    .instructions h3 {
        font-size: 1rem;
    }

    .instructions li {
        font-size: 0.8rem;
        padding-left: 20px;
    }

    .game-intro h2,
    .game-summary h2 {
        font-size: 1.3rem;
    }

    .game-intro p,
    .game-summary p {
        font-size: 0.9rem;
    }
} 