/* 8-Bit Retro Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    background: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Header */
header {
    margin-bottom: 60px;
    text-align: center;
}

.logo {
    font-size: 24px;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 2px;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    line-height: 1.5;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.85)), url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    border: 3px solid #00FF00;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.hero-content {
    max-width: 500px;
}

.hero-title {
    font-size: 32px;
    font-weight: normal;
    color: #00FFFF;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-description {
    font-size: 12px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #00FF00;
    color: #000000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #00FFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 15px 35px;
    font-weight: normal;
    font-size: 12px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #000000;
    border-radius: 12px;
}

.hero-game-image {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Games Section */
.games-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
    text-align: left;
    line-height: 1.6;
    max-width: 600px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #00FF00;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    border-color: #00FFFF;
}

.game-card.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: #666666;
}

.game-card.coming-soon:hover {
    transform: none;
    box-shadow: none;
}

.game-image {
    width: 100%;
    height: 200px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.coming-soon-badge {
    background: #FF0000;
    color: #FFFFFF;
    padding: 10px 20px;
    font-weight: normal;
    font-size: 10px;
    letter-spacing: 1px;
    border-radius: 4px;
}

.game-info {
    padding: 20px;
}

.game-name {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 8px;
    font-weight: normal;
}

.game-type {
    font-size: 10px;
    color: #00FF00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .hero {
        padding: 30px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 10px;
    }
    
    .section-title {
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

