:root {
    --project-accent:      #cc2222;
    --project-accent-glow: rgba(204, 34, 34, 0.3);
}

/* War uses a slower overlay fade */
#overlay { transition: opacity 1.5s ease; }

#overlay h1 {
    font-family: 'Georgia', serif;
    color: #c4a86a;
    font-size: 4rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(196, 168, 106, 0.3);
}

.start-btn {
    font-family: 'Georgia', serif;
    color: #c4a86a;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    background: transparent;
    border: 1px solid rgba(196, 168, 106, 0.4);
    padding: 12px 40px;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
    -webkit-tap-highlight-color: transparent;
}
.start-btn:hover,
.start-btn:active {
    border-color: #c4a86a;
    color: #fff;
}

#info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-family: 'Georgia', serif;
    color: rgba(196, 168, 106, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    z-index: 50;
    pointer-events: none;
}

#why {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    pointer-events: none;
    opacity: 0;
    transition: opacity 4s ease;
}
#why.visible { opacity: 1; }

#why h1 {
    font-family: 'Georgia', serif;
    color: #fff;
    font-size: 12rem;
    letter-spacing: 0.15em;
    text-shadow:
        0 0  60px rgba(255, 100,  0, 0.6),
        0 0 120px rgba(255,  50,  0, 0.3);
}

@media (max-width: 540px) {
    #overlay h1 { font-size: 2.5rem; letter-spacing: 0.2em; }
}
@media (max-height: 420px) and (orientation: landscape) {
    #overlay h1 { font-size: 2rem; }
}
