:root {
    --bg-dark: #050508;
    --text-main: #ececec;
    --text-muted: #8b8b9e;
    --accent-1: #2563eb;
    --accent-2: #7c3aed;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow: hidden;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 60vh;
    height: 60vh;
    background: var(--accent-1);
    top: -20%;
    left: -10%;
}

.blob-2 {
    width: 50vh;
    height: 50vh;
    background: var(--accent-2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

.container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
}

.glass-panel {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    box-shadow: 0 0 30px rgba(37,99,235,0.5);
}

h1 {
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.status-bar {
    display: inline-flex;
    align-items: center;
    background: rgba(37,99,235, 0.1);
    border: 1px solid rgba(37,99,235, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    gap: 10px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-bar span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #60a5fa;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
