body {
    background-color: #1a0f3d; 
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden; 
}

.game-hero-section {
    position: relative;
    height: 90vh; 
    background: linear-gradient(135deg, #2e0f52 0%, #0c082e 100%);
    color: white;
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); 
}


    .game-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('https://via.placeholder.com/1920x1080/0d082c/0c082e?text=GAMER+BACKGROUND'); 
        background-size: cover;
        background-position: center;
        opacity: 0.3; 
        z-index: 1;
    }

    .game-hero-section > .container {
        position: relative;
        z-index: 2; 
        text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); 
    }
.game-pixel-title {
    font-family: 'Press Start 2P', cursive; 
    font-size: 5rem; 
    line-height: 1;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8), 0 0 30px rgba(255, 0, 255, 0.6);
}


.text-primary-neon {
    color: #ff00ff;
}

.text-secondary-neon {
    color: #00ffff; 
}


.game-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #e0e0e0;
}

.game-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero-primary, .btn-hero-secondary {
    font-weight: bold;
    letter-spacing: 1px;
    padding: 15px 35px;
    border-radius: 50px; 
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.btn-hero-primary {
    background: linear-gradient(45deg, #ff00ff, #8a2be2); 
    color: white;
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
}

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 0, 255, 0.6);
        background: linear-gradient(45deg, #8a2be2, #ff00ff);
        color: white;
    }

.btn-hero-secondary {
    background: linear-gradient(45deg, #00ffff, #00bfff); 
    color: white;
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.4);
}

    .btn-hero-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 255, 255, 0.6);
        background: linear-gradient(45deg, #00bfff, #00ffff);
        color: white;
    }


.game-footer {
    background-color: #0c082e;
    color: #888;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.bg-dark-custom {
    background-color: #0c082e !important;
    border-bottom: 2px solid #ff00ff; 
}

.text-primary-neon {
    color: #ff00ff !important; 
}