/* Reset Default Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Full-Screen Background Image */
.home-container {
    width: 100%;
    height: 100vh;
    background: url('space-shooter.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Dark Overlay */
.overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    color: white;
}

/* Game Title */
.game-title {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Description */
.game-desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Proceed Button */
.proceed-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

/* Button Hover Effect */
.proceed-btn:hover {
    background: #F44336;
}

/* Footer */
footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1rem;
}

.highlight {
    color: #FBC02D;
    font-weight: bold;
}
