html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

body {
    background: #000 url('/screenshots/1.png') no-repeat center center fixed;
    background-size: cover;
}

span {
    font-weight: 500;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    min-height: 100vh;
}

h1 {
    font-weight: 400;
    font-size: 2rem;
    margin: 0 0 2rem 0;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    color: #ccc;
}

header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@font-face {
  font-family: 'LEMONMILK';
  src: url('/fonts/LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

.header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.header:hover {
    transform: scale(1.05);
}

.header:hover .logo {
    opacity: 0.8;
    filter: drop-shadow(0 0 12px rgba(196, 181, 253, 0.9));
}

.header:hover .title {
    text-shadow: 0 0 16px rgba(196, 181, 253, 0.9), 0 0 32px rgba(196, 181, 253, 0.4);
}

.logo {
    position: absolute;
    width: 96px;
    height: 96px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.title {
    font-family: 'LEMONMILK', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: text-shadow 0.3s ease;
}

.info-list {
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: center;
}

.info-list li {
    margin: 0.5rem 0;
}

.warning-18 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff0000;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.4);
    letter-spacing: 0.1em;
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    margin: 0.25rem 0 1rem 0;
}

.status__dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #888;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

.status--up .status__dot {
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

.status--down .status__dot {
    background: #ef4444;
}

.status--loading .status__dot {
    background: #fbbf24;
    animation: status-pulse 1.2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 1; }
}
