:root {
    --primary: #00ff88;
    --bg-dark: #0a0c10;
    --card-bg: rgba(20, 25, 35, 0.6);
    --border: rgba(255, 255, 255, 0.08);
}

body, html {
    margin: 0;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-gradient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #161b26 0%, #0a0c10 100%);
    z-index: -1;
}

.main-wrapper {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

.status-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255,255,255,0.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #555;
    letter-spacing: 1px;
}

.pulse-dot {
    height: 8px;
    width: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 12px var(--primary);
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

h1 {
    font-size: 32px;
    margin: 0 0 8px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 35px;
}

.domain-list {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 35px;
    border: 1px solid rgba(255,255,255,0.03);
}

.domain-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.domain-item:last-child { border: none; }

.domain-name { 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 14px; 
    color: #ccc;
}

.tag-online {
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.system-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
    grid-template-rows: auto auto;        /* 2 Zeilen */
    gap: 25px 10px;                       /* Abstand zwischen den Specs */
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

.spec { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.label { 
    font-size: 9px; 
    color: #555; 
    text-transform: uppercase; 
    margin-bottom: 6px; 
    letter-spacing: 1.5px; 
}

.value { 
    font-family: 'JetBrains Mono', monospace; 
    font-size: 12px; 
    font-weight: 400; 
    color: #eee; 
}

.card-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: #333;
}