/* WarGames WOPR Terminal Style - Blue CRT Theme */
.wargames-mode {
    background-color: #000000;
    color: #6B9CC8;
    font-family: 'Courier New', Courier, monospace;
}

.wargames-mode body {
    background-color: #000000;
    color: #6B9CC8;
    font-family: 'Courier New', Courier, monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 20px 20px;
    letter-spacing: 1px;
}

.wargames-mode .crt-overlay {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.35;
}

.wargames-mode .crt-flicker {
    display: none;
}

.wargames-mode .crt-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center,
        transparent 35%,
        rgba(0, 0, 0, 0.5) 85%,
        rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 9998;
}

.wargames-mode .container {
    max-width: 700px;
    width: 100%;
    border: 3px solid #3A5A6A;
    border-radius: 10px;
    padding: 25px;
    background: #000000;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8),
                0 0 15px rgba(91, 163, 198, 0.4);
}

.wargames-mode .wopr-header {
    text-align: right;
    font-size: 0.85rem;
    margin-bottom: 25px;
    border-bottom: 1px solid #4A7BA8;
    padding-bottom: 8px;
    letter-spacing: 2px;
    color: #6B9CC8;
    text-shadow: 0 0 6px rgba(107, 156, 200, 0.6),
                 0 0 12px rgba(107, 156, 200, 0.4);
}

.wargames-mode .wopr-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 3px;
}

.wargames-mode .prompt {
    font-size: 1.1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #6B9CC8;
    text-shadow: 0 0 6px rgba(107, 156, 200, 0.6),
                 0 0 12px rgba(107, 156, 200, 0.4);
}

.wargames-mode .games-section {
    margin-bottom: 25px;
}

.wargames-mode .games-title {
    font-size: 0.95rem;
    margin-bottom: 15px;
    border-bottom: 1px dashed #4A7BA8;
    padding-bottom: 5px;
    letter-spacing: 1px;
    color: #6B9CC8;
    text-shadow: 0 0 5px rgba(107, 156, 200, 0.5),
                 0 0 10px rgba(107, 156, 200, 0.3);
}

.wargames-mode .game-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wargames-mode .game-item {
    margin-bottom: 22px;
    padding-left: 20px;
}

.wargames-mode .game-name {
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: 1px;
    color: #6B9CC8;
    text-shadow: 0 0 6px rgba(107, 156, 200, 0.6),
                 0 0 12px rgba(107, 156, 200, 0.4);
}

.wargames-mode .game-desc {
    font-size: 0.9rem;
    margin-left: 20px;
    color: #6B9CC8;
    text-shadow: 0 0 5px rgba(107, 156, 200, 0.5),
                 0 0 10px rgba(107, 156, 200, 0.3);
}

.wargames-mode .game-subdesc {
    font-size: 0.85rem;
    margin-left: 20px;
    opacity: 0.7;
    color: #6B9CC8;
    text-shadow: 0 0 4px rgba(107, 156, 200, 0.4),
                 0 0 8px rgba(107, 156, 200, 0.2);
}

.wargames-mode .selection-prompt {
    font-size: 1rem;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    color: #6B9CC8;
    text-shadow: 0 0 6px rgba(107, 156, 200, 0.6),
                 0 0 12px rgba(107, 156, 200, 0.4);
}

.wargames-mode .cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background: #6B9CC8;
    box-shadow: 0 0 10px rgba(107, 156, 200, 0.7);
}

.wargames-mode .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
    margin-top: 30px;
    border-top: 1px solid #4A7BA8;
}

.wargames-mode .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wargames-mode .footer-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #6B9CC8;
    text-shadow: 0 0 5px rgba(107, 156, 200, 0.5),
                 0 0 10px rgba(107, 156, 200, 0.3);
}

.wargames-mode .toggle-btn {
    background: transparent;
    border: 1px solid #6B9CC8;
    color: #6B9CC8;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    padding: 1px 6px;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 1px;
    opacity: 0.7;
    text-shadow: 0 0 4px rgba(107, 156, 200, 0.4);
}

.wargames-mode .toggle-btn:hover {
    background: rgba(74, 123, 168, 0.15);
    box-shadow: 0 0 8px rgba(107, 156, 200, 0.5);
    opacity: 1;
}

.wargames-mode a {
    color: #6B9CC8;
    text-decoration: none;
    text-shadow: 0 0 6px rgba(107, 156, 200, 0.6),
                 0 0 12px rgba(107, 156, 200, 0.4);
}

.wargames-mode a:hover .game-name {
    text-decoration: underline;
}

/* Hide HAMRAD-specific elements in Wargames mode */
.wargames-mode .norad-header,
.wargames-mode .main-content,
.wargames-mode .hamrad-footer {
    display: none;
}

/* Hide WOPR-specific elements in HAMRAD mode */
.hamrad-mode .wopr-container {
    display: none;
}
