:root {
    --bg-dark: #0f172a;
    --accent-primary: #8b5cf6;
    /* Violet */
    --accent-secondary: #06b6d4;
    /* Cyan */
    --accent-glow: rgba(139, 92, 246, 0.5);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Internal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    position: relative;
    padding: 4rem 1rem;
    overflow-x: hidden;
}

/* Background Mesh Animation */
.background-mesh {
    position: fixed;
    width: 150vw;
    height: 150vh;
    background:
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 10% 10%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(236, 72, 153, 0.15) 0%, transparent 40%);
    filter: blur(60px);
    z-index: -1;
    animation: rotateMesh 20s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotateMesh {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.container {
    width: 100%;
    max-width: 600px;
    z-index: 10;
    margin: 0 auto;
}

/* Glass Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner shine */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Header */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-secondary);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.lock-icon {
    color: var(--text-muted);
}

/* Content */
.headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Action Card */
.action-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.card-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.admin-msg {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-primary), #6d28d9);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    width: 100%;
    justify-content: center;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.4);
}

.contact-button .icon {
    font-size: 1.1rem;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

/* Terminal Tip */
.terminal-tip {
    background: #000;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.term-dot.red {
    background: #ef4444;
}

.term-dot.yellow {
    background: #eab308;
}

.term-dot.green {
    background: #22c55e;
}

.term-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 1rem;
    color: #e2e8f0;
}

.comment {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.command-line {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.prompt {
    color: var(--accent-secondary);
}

.cmd {
    color: var(--text-main);
}

.command-output {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: var(--text-muted);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .glass-panel {
        padding: 1.5rem;
    }

    .headline {
        font-size: 1.5rem;
    }
}

/* Logs Section */
.logs-section {
    margin-top: 3rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.logs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.logs-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.log-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.log-entry {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: flex;
    gap: 1rem;
    align-items: center;
    opacity: 0.7;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.log-entry:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.02);
    border-left-color: var(--accent-primary);
}

.log-timestamp {
    color: #64748b;
    min-width: 80px;
}

.log-message {
    color: #cbd5e1;
    flex: 1;
}

.log-status {
    font-size: 0.75rem;
    font-weight: 600;
}

.status-ok {
    color: #22c55e;
}

.status-warn {
    color: #eab308;
}

.status-err {
    color: #ef4444;
}