/* Personal WEB Server — demo starter (Tokyo Night ihletésű) */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        radial-gradient(circle at 20% 20%, rgba(125,207,255,0.10) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(187,154,247,0.10) 0%, transparent 50%),
        linear-gradient(135deg, #1a1b26 0%, #24283b 100%);
    color: #c0caf5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* ----- Landing (középső blokk) ----- */
.landing {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
}

.title {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    color: #7dcfff;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 24px rgba(125,207,255,0.35);
    margin-bottom: 4px;
}

.title2 {
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 700;
    color: yellow;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 24px rgba(125,207,255,0.35);
    margin-bottom: 4px;
}

.user-card {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(36,40,59,0.7);
    border: 1px solid #414868;
    backdrop-filter: blur(6px);
    font-family: 'JetBrains Mono', Menlo, Consolas, monospace;
    font-size: 15px;
}
.user-label {
    color: #9aa5ce;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 11px;
    font-weight: 600;
}
.user-email {
    color: #bb9af7;
    font-weight: 600;
    font-size: 15px;
}

.hint {
    color: #9aa5ce;
    font-size: 14px;
    max-width: 460px;
    line-height: 1.55;
}
.hint a {
    color: #7dcfff;
    text-decoration: none;
    border-bottom: 1px dashed #7dcfff;
    padding-bottom: 1px;
    transition: color 0.15s;
}
.hint a:hover {
    color: #bb9af7;
    border-bottom-color: #bb9af7;
}

/* ----- Footer (bal alsó = version, jobb alsó = óra) ----- */
.page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px;
    font-family: 'JetBrains Mono', Menlo, Consolas, monospace;
    font-size: 13px;
    color: #6b7394;
    border-top: 1px solid #2a2e44;
}
.version {
    color: #9ece6a;
    background: rgba(158,206,106,0.10);
    border: 1px solid rgba(158,206,106,0.25);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.clock {
    color: #e0af68;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

@media (max-width: 500px) {
    .user-card { flex-direction: column; align-items: center; gap: 4px; padding: 10px 18px; }
    .page-footer { font-size: 11.5px; }
}
