:root {
    --bg: #0a0a0a;
    --text: #f0f0f0;
    --accent: #666;
}

body {
    background: var(--bg);
    color: var(--text);
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100svh;
}

.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: monospace;
    font-size: 0.9rem;
    z-index: 10;
}

.lang-switch span {
    cursor: pointer;
    color: var(--accent);
    padding: 5px;
    transition: 0.3s;
}

.lang-switch span.active {
    color: var(--text);
    font-weight: bold;
}

.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

#quote {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 850px;
}

.sub-quote {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer {
    padding: 20px 30px 40px 30px;
    display: flex;
    justify-content: space-between;
    font-family: monospace;
    font-size: 0.8rem;
    color: #555;
}

.footer a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    color: #007bff;
    border-bottom: 1px solid #007bff;
}

.cursor-pointer {
    cursor:pointer; 
}

.cursor-help {
    cursor:help;
}

.shuffle {
    margin-left: 10px;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        align-items: center;
    }
}