/* ===== CONTAINER ===== */
.container {
    width: 480px;
    max-width: 100%;
    padding: 28px 28px 24px 28px;
    background: rgba(20, 20, 40, 0.5);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* ===== ACTIVE BAR ===== */
.active-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    margin-bottom: 20px;
    background: rgba(167, 139, 250, 0.06);
    border: 1px solid rgba(167, 139, 250, 0.10);
    border-radius: 12px;
}

.active-bar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.25; }
}

.active-bar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.active-bar-name {
    font-size: 14px;
    font-weight: 500;
    color: #e8edf5;
}

.active-bar-host {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.active-bar-status {
    font-size: 11px;
    font-weight: 500;
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
    padding: 3px 12px;
    border-radius: 40px;
    border: 1px solid rgba(52, 211, 153, 0.06);
    flex-shrink: 0;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== WELCOME ===== */
.welcome {
    text-align: center;
    padding: 8px 0 16px 0;
}

.welcome-text {
    font-size: 17px;
    font-weight: 500;
    color: #e8edf5;
}

.welcome-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.20);
    margin-top: 4px;
}

/* ===== ACTIONS ===== */
.actions {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.actions .btn {
    flex: 1;
    min-width: 100px;
}

.btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 450;
    text-align: center;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: 0.25s;
    cursor: pointer;
    border: none;
    background: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(124, 58, 237, 0.18));
    color: #c4b5fd;
    border: 1px solid rgba(167, 139, 250, 0.08);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.26), rgba(124, 58, 237, 0.26));
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.40);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.btn-danger {
    background: rgba(248, 113, 113, 0.06);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.06);
}

.btn-danger:hover {
    background: rgba(248, 113, 113, 0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 520px) {
    body {
        padding: 12px;
    }
    .container {
        padding: 18px 14px 16px 14px;
        border-radius: 18px;
    }
    .active-bar {
        flex-wrap: wrap;
        padding: 10px 12px;
    }
    .active-bar-status {
        margin-left: auto;
    }
    .actions {
        flex-direction: column;
    }
    .actions .btn {
        flex: none;
        width: 100%;
    }
    .welcome-text {
        font-size: 16px;
    }
}