:root {
    --neon-cyan: #00ffcc;
    --neon-magenta: #ff3366;
    --neon-yellow: #ffcc00;
    --bg-dark: #1a1a2e;
    --bg-medium: #2a2a3e;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg-dark);
    color: #e4e4f1;
    padding: 20px;
}

h1 {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-bottom: 30px;
}

a {
    color: #4da6ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b3d9ff;
    text-shadow: 0 0 10px var(--neon-cyan);
    transition: 0.3s;
}

#main-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.quiet-footer {
    padding: 20px 0 10px;
    text-align: center;
    font-family: "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 8px;
    color: #b0b0b0;
    line-height: 1;
    letter-spacing: 0.05em;
}

.logger-link {
    display: block;
    width: 55%;
    min-width: 500px;
    padding: 10px 0 10px;
    text-align: left;
    font-family: "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 12px;
    color: #b0b0b0;
}
