:root {
    --glass-bg: rgba(25, 30, 45, 0.55);
    --glass-border: rgba(255, 255, 255, 0.1);
    --accent: #94a3b8; 
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    margin: 0; padding: 0;
    font-family: 'Inter', sans-serif;
    background: #020617;
    color: var(--text-main);
    display: flex; flex-direction: column; align-items: center;
    min-height: 100vh;
}

.bg-gradient {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(at 0% 0%, #111b2d 0%, transparent 45%),
                radial-gradient(at 100% 100%, #080c14 0%, transparent 45%);
    z-index: -1;
}

.glass-nav {
    position: fixed; top: 20px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 24px; padding: 6px 12px;
    display: flex; z-index: 1000;
}

.nav-btn {
    color: var(--text-dim); text-decoration: none;
    padding: 10px 20px; font-size: 0.9rem; font-weight: 500;
    border-radius: 16px; transition: var(--transition);
}

.nav-btn:hover, .nav-btn.active { color: #fff; background: rgba(255, 255, 255, 0.08); }

.content {
    margin-top: 140px; margin-bottom: 80px;
    width: 90%; max-width: 1100px;
    display: flex; flex-direction: column; align-items: center; gap: 40px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
}

.hero { padding: 45px; text-align: center; width: 100%; max-width: 650px; }
h1 { font-size: 3rem; margin: 15px 0; font-weight: 700; letter-spacing: -1.5px; }
.highlight { color: var(--accent); }

.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; width: 100%;
}

.tile-link { display: flex; text-decoration: none; color: inherit; }

.tile {
    padding: 30px 20px; transition: var(--transition);
    display: flex; flex-direction: column; flex: 1;
    align-items: center; text-align: center;
}

.tile:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon { font-size: 2.5rem; margin-bottom: 15px; }
.tile h3 { margin: 0 0 10px 0; font-size: 1.1rem; font-weight: 600; }
.tile p { margin: 0; font-size: 0.85rem; color: var(--text-dim); line-height: 1.5; }

.ip-container {
    background: rgba(0, 0, 0, 0.25); border: 1px solid var(--glass-border);
    padding: 15px 25px; border-radius: 18px;
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 25px; cursor: pointer; transition: var(--transition);
}

.ip-container:hover { background: rgba(255, 255, 255, 0.03); transform: scale(1.02); }
.ip-text { font-family: monospace; font-weight: 700; }
.copy-icon { font-size: 0.7rem; background: var(--text-dim); color: #000; padding: 3px 7px; border-radius: 5px; }

.policy-note {
    margin-top: 40px; padding: 20px 40px;
    border-radius: 20px; background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    text-align: center; max-width: 600px;
}
.policy-note p { color: #fca5a5; font-size: 0.9rem; margin: 0; }

.badge { background: rgba(74, 222, 128, 0.1); color: #4ade80; padding: 5px 14px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.shimmer-line { height: 2px; width: 40px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin-top: 15px; }

@media (max-width: 900px) { .tile-grid { grid-template-columns: 1fr; } }
.fade-in { animation: fadeIn 0.8s ease-out; }
.fade-in-delay { animation: fadeIn 1.2s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Status Specific Styles --- */

/* Der pulsierende Punkt oben */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s infinite;
}

.status-label {
    color: #4ade80;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Fortschrittsbalken in den Kacheln */
.mini-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}

.fill.green {
    background: #4ade80;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Back Link Styling falls noch nicht drin */
.back-link {
    transition: var(--transition);
    opacity: 0.7;
}
.back-link:hover {
    opacity: 1;
    transform: translateX(-5px);
}

.pulse-dot.green { background: #4ade80; box-shadow: 0 0 10px #4ade80; }
.pulse-dot.red { background: #ef4444; box-shadow: 0 0 10px #ef4444; }
.pulse-dot.grey { background: #94a3b8; box-shadow: none; }

.fill.green { background: #4ade80; }
.fill.red { background: #ef4444; }