﻿body {
    margin: 0;
    font-family: 'Special Elite', monospace;
    background-color: #101010;
    color: #e0e0e0;
    transition: background 0.5s, color 0.5s;
}

.container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #F05211;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(240, 82, 17, 0.25);
}
h1, .subtitle {
    font-family: 'Alata', sans-serif;
}
h1 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #bada55;
}

.console {
    background: #000;
    border: 1px solid #333;
    padding: 1rem;
    height: 300px;
    overflow-y: scroll;
    font-family: monospace;
    font-size: 0.95rem;
    color: #F05211;
    white-space: pre-wrap;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

button {
    font-family: 'Special Elite', monospace;
    background-color: #222;
    border: 1px solid #F05211;
    color: #F05211;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

    button:hover {
        background-color: #F05211;
        color: #000;
    }

.bunker {
    background-color: #f5f5f5;
    color: #e0e0e0;
}

    .bunker h1 {
        color: #e0e0e0;
    }

    .bunker .subtitle {
        color: #e0e0e0;
    }

    .bunker .console {
        background: #ddd;
        color: #111;
        border-color: #888;
    }

    .bunker button {
        background: #fff;
        color: #333;
        border: 1px solid #555;
    }

/* Typing animation and blinking caret */
.console .line.typing {
    border-right: 2px solid #F05211;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    0%, 100% {
        border-color: transparent;
    }

    50% {
        border-color: #F05211;
    }
}


    .theme-toggle:hover {
        transform: scale(1.15);
    }

.bunker .theme-toggle {
    color: #000;
}
.info-section {
    margin-top: 2rem;
    font-family: 'Alata', sans-serif;
}

.info-toggle {
    background: none;
    border: 1px solid #888;
    color: inherit;
    font-family: 'Alata', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
}

    .info-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

.info-content {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bunker .info-content {
    background-color: #eee;
    color: #111;
    border-color: #bbb;
}
.visitor-counter {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
}
    .visitor-counter .credit {
        font-family: 'Alata', sans-serif;
        margin-top: 0.5rem;
        font-size: 0.85rem;
        color: #aaa;
    }

        .visitor-counter .credit a {
            font-family: 'Alata', sans-serif;
            color: #aaa;
            text-decoration: none;
        }

            .visitor-counter .credit a:hover {
                font-family: 'Alata', sans-serif;
                text-decoration: underline;
            }
