:root {
    --text-color: #01579b;
    --accent-color: #ff4081;
    --border-style: 4px solid #01579b;
}

body {
    background-color: #e1f5fe;
    color: var(--text-color);
    font-family: 'VT323', monospace;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.logo {
    width: 150px;
    margin-top: 20px;
}

nav {
    margin: 20px 0;
    border-top: var(--border-style);
    border-bottom: var(--border-style);
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.5rem;
}

nav a:hover {
    color: var(--accent-color);
}

.container {
    border: var(--border-style);
    padding: 40px;
    background: #ffffff;
    max-width: 90%;
    box-shadow: 10px 10px 0px var(--text-color);
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 999;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 87, 155, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}
.modal-content {
    background: #ffffff;
    border: var(--border-style);
    padding: 30px;
    text-align: center;
    box-shadow: 10px 10px 0px var(--accent-color);
    width: 400px;
}
.modal-content button {
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    padding: 10px 30px;
    background: var(--text-color);
    color: #fff;
    border: none;
}