/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0b0f19 url('https://unsplash.com') no-repeat center center/cover;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Dark atmospheric overlay over the background image */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.9) 0%, rgba(20, 10, 5, 0.85) 100%);
    z-index: 1;
}

/* Layout Content Wrapper */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Company Branding */
.company-logo {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a0aec0;
}

/* Game Title Styles */
.game-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.highlight {
    color: #ff6b35; /* Adventurous Orange/Red */
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.tagline {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Coming Soon Status Box */
.coming-soon-badge h2 {
    font-size: 1.5rem;
    letter-spacing: 8px;
    border: 2px solid #ffffff;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

/* Newsletter Signup */
.signup-container p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.signup-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.signup-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.signup-form input:focus {
    border-color: #ff6b35;
}

.signup-form button {
    padding: 15px 30px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, transform 0.2s;
}

.signup-form button:hover {
    background: #e0531f;
    transform: translateY(-2px);
}

/* Footer styling */
footer {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    width: 100%;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon-badge h2 {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
}