* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a2f0a 0%, #0d3b0d 25%, #114611 50%, #0d3b0d 75%, #0a2f0a 100%);
    color: #e0f0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(10, 40, 10, 0.9);
    padding: 40px 0;
    text-align: center;
    border-bottom: 3px solid #2ecc71;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 60px;
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #b8e6b8;
    font-weight: 300;
}

/* Game Tabs Styles */
.game-tab {
    background: rgba(20, 60, 20, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 60px;
    border: 2px solid #2ecc71;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.game-tab.visible {
    opacity: 1;
    transform: translateX(0);
}

.game-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #2ecc71;
    font-size: 2.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #2ecc71;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.game-description {
    font-size: 1.1rem;
    color: #d0f0d0;
}

.game-features, .multiplayer-features {
    background: rgba(30, 80, 30, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #2ecc71;
}

.game-features h3, .multiplayer-features h3 {
    color: #2ecc71;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-features ul, .multiplayer-features ul {
    padding-left: 20px;
}

.game-features li, .multiplayer-features li {
    margin-bottom: 10px;
    padding-left: 10px;
    text-align: left;
}

/* Game Images */
.game-images {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.game-images img {
    width: calc(50% - 10px);
    border-radius: 10px;
    border: 2px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-images img:hover {
    transform: scale(1.02);
}

/* Coming Soon Section */
.development-notice {
    text-align: center;
}

.coming-soon {
    position: relative;
    margin: 40px 0;
}

.coming-soon img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.7);
    border: 3px solid #2ecc71;
}

.coming-soon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(20, 60, 20, 0.85);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #2ecc71;
}

.coming-soon-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.7);
    margin-bottom: 10px;
}

.coming-soon-text p {
    font-size: 1.2rem;
    color: #b8e6b8;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border: 2px solid #2ecc71;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
}

.btn:hover {
    background: linear-gradient(135deg, #27ae60, #219653);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.6);
}

.game-link {
    display: flex;
    justify-content: center;
}

/* Footer Styles */
footer {
    background: rgba(10, 40, 10, 0.95);
    padding: 40px 0;
    margin-top: 60px;
    border-top: 3px solid #2ecc71;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #2ecc71;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 10px;
    border: 2px solid #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link:hover {
    background: rgba(46, 204, 113, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.copyright {
    text-align: center;
    color: #b8e6b8;
    font-size: 1rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    .game-content h2 {
        font-size: 2rem;
    }
    
    .game-images {
        flex-direction: column;
    }
    
    .game-images img {
        width: 100%;
    }
    
    .coming-soon-text h3 {
        font-size: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-link {
        width: 80%;
        justify-content: center;
    }
}
